main/faad2: move .so to -dev package

ref #384
This commit is contained in:
Natanael Copa 2010-07-14 14:35:23 +00:00
parent 197e530b92
commit b72ffdd195

View File

@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=faad2
pkgver=2.7
pkgrel=1
pkgrel=2
pkgdesc="ISO AAC audio decoder"
url="http://www.audiocoding.com/"
license="custom:GPL"
@ -22,6 +22,10 @@ build ()
sh bootstrap
./configure --prefix=/usr || return 1
make || return 1
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install || return 1
install -m644 common/mp4ff/mp4ff_int_types.h "$pkgdir"/usr/include/mp4ff_int_types.h || return 1
}