diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-29 14:24:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-29 14:24:42 +0000 |
commit | 25ce47f70ef60bc2909b47fa5e30b59753366dc4 (patch) | |
tree | b80f909c44cf96ccec23482586c274e60d922e4e /main/mpg123/APKBUILD | |
parent | 72b84c30a8fd4e86e3299b239b7c129e9da4b799 (diff) | |
download | aports-25ce47f70ef60bc2909b47fa5e30b59753366dc4.tar.bz2 aports-25ce47f70ef60bc2909b47fa5e30b59753366dc4.tar.xz |
main/mpg123: include .la files in main package
fixes #90
Diffstat (limited to 'main/mpg123/APKBUILD')
-rw-r--r-- | main/mpg123/APKBUILD | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/main/mpg123/APKBUILD b/main/mpg123/APKBUILD index 4a13dea81a..88cc30b0f1 100644 --- a/main/mpg123/APKBUILD +++ b/main/mpg123/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=mpg123 pkgver=1.8.1 -pkgrel=0 +pkgrel=1 pkgdesc="A console based real time MPEG Audio Player for Layer 1, 2 and 3" url="http://sourceforge.net/projects/mpg123" license="GPL2 LGPL2" @@ -22,4 +22,11 @@ build() { make || return 1 make DESTDIR="$pkgdir" install || return 1 } + +# mpg123 needs the output_*.la files so we move them back from -dev package +dev() { + default_dev + mv "$subpkgdir"/usr/lib/mpg123/output_* "$pkgdir"/usr/lib/mpg123/ +} + md5sums="856893f14b29b1cddf4aba32469860b4 mpg123-1.8.1.tar.bz2" |