2011-10-18 06:08:25 +00:00

34 lines
759 B
Plaintext

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libburn
pkgver=1.1.6
_ver=${pkgver%_p*}
_pver=
if [ "$_ver" != "$pkgver" ]; then
_pver=".pl${pkgver##*_p}"
fi
pkgrel=0
pkgdesc="Library for reading, mastering and writing optical discs"
url="http://libburnia.pykix.org/"
arch="all"
license="GPL"
depends=""
makedepends=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://files.libburnia-project.org/releases/libburn-${_ver}${_pver}.tar.gz"
_builddir="$srcdir"/$pkgname-$_ver
build ()
{
cd "$_builddir"
./configure --prefix=/usr --disable-static
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la
}
md5sums="741604c3d4064502f06bae20293c508c libburn-1.1.6.tar.gz"