blob: 0b62339f7edb17b57657363a6e58dbcc80d71c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libburn
pkgver=1.0.2_p00
_ver=${pkgver%_p*}
_pver=${pkgver##*_p}
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}.pl${_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
}
md5sums="34ebee1dc4a4933c933f9701825a435a libburn-1.0.2.pl00.tar.gz"
|