mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-28 12:51:44 +01:00
the $lib variable is prefixed with slash, so adding it ourselves would yield /usr//lib/. This in turn breaks cross compiling because pkgconf does not filter out system paths unless they match exactly.
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libcap
|
|
pkgver=2.25
|
|
pkgrel=1
|
|
pkgdesc="POSIX 1003.1e capabilities"
|
|
arch="all"
|
|
license="GPL"
|
|
url="http://www.friedhoff.org/posixfilecaps.html"
|
|
depends=
|
|
depends_dev="linux-headers"
|
|
makedepends_build="linux-headers perl"
|
|
makedepends_host="$depends_dev attr-dev"
|
|
makedepends="$makedepends_build $makedepends_host"
|
|
source="https://kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-$pkgver.tar.xz"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
build ()
|
|
{
|
|
cd "$_builddir"
|
|
make BUILD_CC=gcc CC="${CC:-gcc}" lib=lib prefix=/usr DESTDIR="$pkgdir"
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make lib=/lib prefix=/usr RAISE_SETFCAP=no DESTDIR="$pkgdir" install
|
|
}
|
|
md5sums="6666b839e5d46c2ad33fc8aa2ceb5f77 libcap-2.25.tar.xz"
|
|
sha256sums="693c8ac51e983ee678205571ef272439d83afe62dd8e424ea14ad9790bc35162 libcap-2.25.tar.xz"
|
|
sha512sums="c3ab491885292adc171cde542b96f1295e84132febb50112a46575c3bde3a3eb6fcf733f7a756b4b656e013c0abb5ed6571db24799f8c0b23d8f759f992864f9 libcap-2.25.tar.xz"
|