mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 06:12:14 +01:00
73 lines
2.3 KiB
Plaintext
73 lines
2.3 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libproxy
|
|
pkgver=0.4.11
|
|
pkgrel=1
|
|
pkgdesc="A library handling all the details of proxy configuration"
|
|
url="http://code.google.com/p/libproxy/"
|
|
arch="all"
|
|
license="LGPLv2+"
|
|
depends=
|
|
depends_dev="zlib-dev"
|
|
makedepends="cmake python-dev $depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-bin py-$pkgname:py"
|
|
source="http://libproxy.googlecode.com/files/libproxy-$pkgver.tar.gz
|
|
libproxy-0.4.7-unistd.patch
|
|
fix-includes.patch"
|
|
|
|
_builddir="$srcdir"/libproxy-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DLIBEXEC_INSTALL_DIR=lib \
|
|
-DMODULE_INSTALL_DIR=/usr/lib/libproxy/$pkgver/modules \
|
|
-DWITH_PERL=OFF \
|
|
./ || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
dev() {
|
|
default_dev
|
|
mkdir -p "$subpkgdir"/usr/share
|
|
mv "$pkgdir"/usr/share/cmake "$subpkgdir"/usr/share/
|
|
}
|
|
|
|
bin() {
|
|
pkgdesc="Binary to test libproxy"
|
|
mkdir -p "$subpkgdir"/usr
|
|
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
|
|
}
|
|
|
|
py() {
|
|
pkgdesc="Binding for libproxy and python"
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
md5sums="3cd1ae2a4abecf44b3f24d6639d2cd84 libproxy-0.4.11.tar.gz
|
|
e90c03f296e553ace347b46f4fea3625 libproxy-0.4.7-unistd.patch
|
|
7ab96e0a54ef400a23ce310fdc3442b3 fix-includes.patch"
|
|
sha256sums="dc3f33de54163718f82b3e7c496a7de97f8862578414b8ecaad3cbfe4821864b libproxy-0.4.11.tar.gz
|
|
8d37357a63dcff4a410d411f10d6a375c74525caa4a5a3b496feceb340f83b62 libproxy-0.4.7-unistd.patch
|
|
aea4d9e70369bad111aad6575aea27775db76c162e3ee1efc760fa19c0738ec6 fix-includes.patch"
|
|
sha512sums="563a837946a73c41e0773cec93332c6308245c0b807a40a0fb052c2445deae4a117ba2780a350c799717fd11c4dbe410183a38ea050a4f04db0b1adcb6f9ad98 libproxy-0.4.11.tar.gz
|
|
9929c308195bc59c1b9a7ddaaf708fb831da83c5d86d7ce122cb9774c9b9b16aef3c17fb721356e33a865de1af27db493f29a99d292e1e258cd0135218cacd32 libproxy-0.4.7-unistd.patch
|
|
1c658fe2231f0eca73faed871599e157588a9352b42ac0bed3f8b6e80dab574a0a61c3b8bd936b3a07207f35d187f122db05ac82d63c021d8118a025061f922c fix-includes.patch"
|