blob: d3c776324fd2052b6cde0a9a63fa8a68f829ad77 (
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
|
# $Id: PKGBUILD 114274 2011-03-12 06:54:15Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=libburn
pkgver=1.0.4.pl00
pkgrel=1
pkgdesc="Library for reading, mastering and writing optical discs"
arch=('i686' 'x86_64')
url="http://libburnia.pykix.org/"
license=('GPL')
depends=('glibc')
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz)
options=('!libtool' '!emptydirs')
md5sums=('edc117aa6d02a19c5aafe30d95df5e80')
build() {
cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
./configure --prefix=/usr --disable-static
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
make DESTDIR=${pkgdir} install
}
|