summaryrefslogtreecommitdiff
path: root/extra/libburn/PKGBUILD
blob: 9123c4a3226e4a7e53142485ab3e490f882e4025 (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 128028 2011-06-20 21:30:26Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>

pkgname=libburn
pkgver=1.1.0.pl01
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=('641d8923007453674ffeb4acce3eded4')

build() {
  cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
  ./configure --prefix=/usr --disable-static
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
  make DESTDIR=${pkgdir} install
}