mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-03 15:51:33 +01:00
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libisofs
|
|
pkgver=1.4.2
|
|
pkgrel=0
|
|
pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image"
|
|
url="http://libburnia-project.org/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=""
|
|
makedepends="acl-dev zlib-dev"
|
|
subpackages="$pkgname-dev"
|
|
source="http://files.libburnia-project.org/releases/libisofs-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-libacl \
|
|
--enable-xattr \
|
|
--disable-static \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make -j1 DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="c01099ebe557eea28fe2b0c061076129 libisofs-1.4.2.tar.gz"
|
|
sha256sums="d5e7f3ea613a78924dde979f699427b1c6b85ba4540d275aa67945b4a70fb3ab libisofs-1.4.2.tar.gz"
|
|
sha512sums="609a803c091beb1ed8cb177703c5f4480e63d5d115ac20b07a2a906285d6d8f7a311f94ee5f1e6add61d82ca8783405c38a48ae1e142dc97c27e67df99f71dfa libisofs-1.4.2.tar.gz"
|