diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-01-23 18:44:08 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-01-23 18:44:08 -0600 |
commit | f20a017fa47b51d94e617847402b95c37e2666d8 (patch) | |
tree | 14720974ae7946eb6b5cc989311d803529d29e0c /main/libbsd | |
parent | 4f63c43497dc64dc248defc5b814e675422de552 (diff) | |
download | aports-f20a017fa47b51d94e617847402b95c37e2666d8.tar.bz2 aports-f20a017fa47b51d94e617847402b95c37e2666d8.tar.xz |
main/libbsd: libbsd-dev should unconditionally depend on bsd-compat-headers to make overlay work
Diffstat (limited to 'main/libbsd')
-rw-r--r-- | main/libbsd/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/libbsd/APKBUILD b/main/libbsd/APKBUILD index 2295e36845..94d91b963d 100644 --- a/main/libbsd/APKBUILD +++ b/main/libbsd/APKBUILD @@ -3,13 +3,14 @@ # Maintainer: William Pitcock <nenolod@dereferenced.org> pkgname=libbsd pkgver=0.8.3 -pkgrel=0 +pkgrel=1 pkgdesc="commonly-used BSD functions not implemented by all libcs" url="http://libbsd.freedesktop.org/" arch="x86 x86_64" license="BSD" depends="" -makedepends="autoconf automake libtool bsd-compat-headers linux-headers" +depends_dev="bsd-compat-headers linux-headers" +makedepends="$depends_dev autoconf automake libtool" subpackages="$pkgname-dev $pkgname-doc" source="http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz musl-fixes.patch" |