diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-03-16 10:04:07 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-03-16 10:06:43 +0000 |
commit | 79cf2406c15e633846af2208291c2f2a29b5b9a8 (patch) | |
tree | 6290af8c60ff5676de1d7f34e9e588eb06841f9e /testing/libsepol/APKBUILD | |
parent | 5fabd625a8532b6b8502072e6b3671c1e139caee (diff) | |
download | aports-79cf2406c15e633846af2208291c2f2a29b5b9a8.tar.bz2 aports-79cf2406c15e633846af2208291c2f2a29b5b9a8.tar.xz |
testing/libsepol: really fix ln issue
we really need coreutils for ln --relative because SHLIBDIR=/lib and
LIBDIR=/usr/lib. Instead of trying to do something smart we just
pull in GNU coreutils.
Diffstat (limited to 'testing/libsepol/APKBUILD')
-rw-r--r-- | testing/libsepol/APKBUILD | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/testing/libsepol/APKBUILD b/testing/libsepol/APKBUILD index 7ea8a5ca33..b0379a4499 100644 --- a/testing/libsepol/APKBUILD +++ b/testing/libsepol/APKBUILD @@ -1,18 +1,17 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libsepol pkgver=2.6 -pkgrel=0 +pkgrel=1 pkgdesc="SELinux binary policy manipulation library " url="https://github.com/SELinuxProject/selinux/wiki" arch="all" license="LGPLv2+" depends="" depends_dev="bsd-compat-headers" -makedepends="$depends_dev flex-dev" +makedepends="$depends_dev flex-dev coreutils" install="" subpackages="$pkgname-dev $pkgname-doc" source="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20161014/libsepol-$pkgver.tar.gz - symlink.patch " builddir="$srcdir/libsepol-$pkgver" @@ -26,5 +25,4 @@ package() { make DESTDIR="$pkgdir" install || return 1 } -sha512sums="17d007857634e3d581fcc9bafcbb75674a06e382bb258c2c6b3656c141d71493699c42b78c8e1917c628476aeb8ead73bb86e8ccf43d7ce59aa0b7884bea132a libsepol-2.6.tar.gz -e9c3d2b09963c4a7b2a82fe8150e5cbc1497305eec4cad4cd61f1f5466a6fc0f495d13efeef834c14ab0c8b3b6e034a4616038ff4b3e96e9373c68a5b30d843d symlink.patch" +sha512sums="17d007857634e3d581fcc9bafcbb75674a06e382bb258c2c6b3656c141d71493699c42b78c8e1917c628476aeb8ead73bb86e8ccf43d7ce59aa0b7884bea132a libsepol-2.6.tar.gz" |