blob: 5060e0ab503bce37b39e08316127e6941ece2c3a (
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 120340 2011-04-22 11:24:54Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Gour <Gour <gour@mail.inet.hr>
pkgname=libisoburn
pkgver=1.0.8.pl00
pkgrel=1
pkgdesc="frontend for libraries libburn and libisofs"
url="http://libburnia.pykix.org/wiki/Libisoburn"
arch=('i686' 'x86_64')
license=('GPL2')
depends=('libburn>=1.0.6' 'libisofs>=1.0.6' 'readline>=6.1')
options=('!libtool')
install=${pkgname}.install
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz)
md5sums=('e9d4c2916f591cdf3b7248366ba54506')
build() {
cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
make DESTDIR=${pkgdir} install
}
|