mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
29 lines
662 B
Bash
29 lines
662 B
Bash
#
|
|
# Contributor: Andreas Radke <andyrtr@archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=libburn
|
|
pkgver=1.3.8 #.pl01
|
|
pkgrel=1
|
|
pkgdesc="Library for reading, mastering and writing optical discs"
|
|
arch=('i686' 'x86_64')
|
|
url="http://libburnia-project.org"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz{,.sig})
|
|
options=('!emptydirs')
|
|
md5sums=('ecee98ecd1c24e9d7e92b605e61a2ef2'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver/.pl01/}
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver/.pl01/}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|