diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-11 22:20:59 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-11 22:20:59 +0000 |
commit | 5dbed75dfca07246dc02b80d392eb7dbc3854147 (patch) | |
tree | 90e4a652c19a92839735abaa3e3f2b3ce37ddb17 /main | |
parent | aad94236cdb612b8df45fe03b7934d3eaf8c80a8 (diff) | |
download | aports-5dbed75dfca07246dc02b80d392eb7dbc3854147.tar.bz2 aports-5dbed75dfca07246dc02b80d392eb7dbc3854147.tar.xz |
main/libsndfile: fix depends for -dev package
needs libvorbis, flac and libogg
Diffstat (limited to 'main')
-rw-r--r-- | main/libsndfile/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/libsndfile/APKBUILD b/main/libsndfile/APKBUILD index 307d621ee6..e29f917fcf 100644 --- a/main/libsndfile/APKBUILD +++ b/main/libsndfile/APKBUILD @@ -1,14 +1,15 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libsndfile pkgver=1.0.23 -pkgrel=0 +pkgrel=1 pkgdesc="A C library for reading and writing files containing sampled sound" url="http://www.mega-nerd.com/libsndfile" arch="all" license="LGPL" subpackages="$pkgname-dev $pkgname-doc" depends= -makedepends="alsa-lib-dev flac-dev libvorbis-dev libogg-dev" +depends_dev="flac-dev libvorbis-dev libogg-dev" +makedepends="alsa-lib-dev $depends_dev" source="http://www.mega-nerd.com/$pkgname/files/$pkgname-$pkgver.tar.gz" build () { |