mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
677 B
Bash
23 lines
677 B
Bash
# $Id: PKGBUILD 50884 2009-09-02 18:03:53Z andyrtr $
|
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=libburn
|
|
pkgver=0.7.0.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=('57ac20c1b951be17f8100f6106d471c6')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
|
|
./configure --prefix=/usr --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|
|
|