1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-16 22:17:06 +00:00
termux-packages/packages/polipo/build.sh
Leonid Pliushch 37375312b9
explicitly set maintainer for each package
In issue https://github.com/termux/termux-packages/issues/6160 I have found
that community repo "its-pointless.github.io" specifies us as maintainer
for its packages. This is NOT TRUE and potentially misleads people using
these packages.

Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral
and not specify maintainer. So all packages now have to override it to
the correct value.

[skip ci]
%ci:no-build
2020-12-20 15:16:34 +02:00

26 lines
952 B
Bash

TERMUX_PKG_HOMEPAGE=http://www.pps.jussieu.fr/~jch/software/polipo/
TERMUX_PKG_DESCRIPTION="A small and fast caching web proxy"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.1.1
TERMUX_PKG_SRCURL=http://www.pps.univ-paris-diderot.fr/~jch/software/files/polipo/polipo-$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=a259750793ab79c491d05fcee5a917faf7d9030fb5d15e05b3704e9c9e4ee015
TERMUX_PKG_DEPENDS="resolv-conf"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_CONFFILES="etc/polipo/config"
termux_step_pre_configure() {
CFLAGS+=" $CPPFLAGS"
}
termux_step_post_make_install() {
install -Dm600 config.sample "$TERMUX_PREFIX"/etc/polipo/config.sample
install -Dm600 forbidden.sample "$TERMUX_PREFIX"/etc/polipo/forbidden.sample
install -Dm600 "$TERMUX_PKG_BUILDER_DIR"/termux.config \
"$TERMUX_PREFIX"/etc/polipo/config
}
termux_step_post_massage() {
mkdir -p "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX"/var/cache/polipo
}