core/libburn/PKGBUILD

27 lines
638 B
Bash
Raw Normal View History

2014-11-15 09:01:29 +08:00
pkgname=libburn
2017-01-19 06:51:35 +08:00
pkgver=1.4.6
2014-11-15 09:01:29 +08:00
pkgrel=1
pkgdesc="Library for reading, mastering and writing optical discs"
2017-01-19 06:51:35 +08:00
arch=('x86_64')
2014-11-15 09:01:29 +08:00
url="http://libburnia-project.org"
license=('GPL')
depends=('glibc')
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz{,.sig})
options=('!emptydirs')
2017-01-19 06:51:35 +08:00
md5sums=('eeab90dfd8b6ae95748a64009b02e4ec'
2014-11-15 09:01:29 +08:00
'SKIP')
2017-01-19 06:51:35 +08:00
validpgpkeys=('44BC9FD0D688EB007C4DD029E9CBDFC0ABC0A854') # Thomas Schmitt <scdbackup@gmx.net>
2014-11-15 09:01:29 +08:00
build() {
cd ${pkgname}-${pkgver/.pl01/}
./configure --prefix=/usr --disable-static
make
}
package() {
cd ${pkgname}-${pkgver/.pl01/}
make DESTDIR=${pkgdir} install
}