mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 03:04:37 +08:00
30 lines
706 B
Bash
30 lines
706 B
Bash
|
# $Id$
|
||
|
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
||
|
# Contributor: Hugo Doria <hugodoria@gmail.com>
|
||
|
# Contributor: Bjorn Martensen
|
||
|
|
||
|
pkgname=libisofs
|
||
|
pkgver=1.3.8
|
||
|
pkgrel=1
|
||
|
pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://libburnia-project.org"
|
||
|
license=('GPL')
|
||
|
depends=('acl' 'zlib')
|
||
|
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz{,.sig})
|
||
|
md5sums=('7fea3aa98038a90cec6a5779e0e05eb5'
|
||
|
'SKIP')
|
||
|
|
||
|
build() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr \
|
||
|
--enable-libacl --enable-xattr --disable-static
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|
||
|
|