mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
62 lines
1.7 KiB
Plaintext
62 lines
1.7 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libproxy
|
|
pkgver=0.4.15
|
|
pkgrel=1
|
|
pkgdesc="A library handling all the details of proxy configuration"
|
|
url="http://code.google.com/p/libproxy/"
|
|
arch="all"
|
|
license="LGPL-2.0-or-later"
|
|
depends=
|
|
depends_dev="zlib-dev"
|
|
makedepends="cmake python3-dev $depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-bin py-$pkgname:py"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/libproxy/libproxy/archive/$pkgver.tar.gz
|
|
libproxy-0.4.7-unistd.patch
|
|
fix-includes.patch
|
|
"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DLIBEXEC_INSTALL_DIR=lib \
|
|
-DMODULE_INSTALL_DIR=/usr/lib/libproxy/$pkgver/modules \
|
|
-DWITH_PERL=OFF \
|
|
.
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
CTEST_OUTPUT_ON_FAILURE=TRUE ctest
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
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/
|
|
}
|
|
|
|
sha512sums="8f68bd56e44aeb3f553f4657bef82a5d14302780508dafa32454d6f724b724c884ceed6042f8df53a081d26ea0b05598cf35eab44823257c47c5ef8afb36442b libproxy-0.4.15.tar.gz
|
|
9929c308195bc59c1b9a7ddaaf708fb831da83c5d86d7ce122cb9774c9b9b16aef3c17fb721356e33a865de1af27db493f29a99d292e1e258cd0135218cacd32 libproxy-0.4.7-unistd.patch
|
|
e35b4f806e5f60e9b184d64dceae62e6e343c367ee96d7e461388f2665fe2ab62170d41848c9da5322bb1719eff3bfaecb273e40a97ce940a5e88d29d03bd8d9 fix-includes.patch"
|