summaryrefslogtreecommitdiff
path: root/extra/libburn/PKGBUILD
blob: 68373af4c477b27e0f018c76877e57590c5cd53d (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 119040 2011-04-10 17:24:51Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>

pkgname=libburn
pkgver=1.0.6.pl00
pkgrel=1
pkgdesc="Library for reading, mastering and writing optical discs"
arch=('i686' 'x86_64' 'mips64el')
url="http://libburnia.pykix.org/"
license=('GPL')
depends=('glibc')
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz)
options=('!libtool' '!emptydirs')
md5sums=('7c3bd62964e5885f7733cf904089f82d')

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

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