diff options
author | Britney Fransen <brfransen@gmail.com> | 2020-10-25 19:50:26 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2020-10-25 19:50:26 (GMT) |
commit | 9cd8b36f79d9fc5ab6efc9d6722788926b7ceb22 (patch) | |
tree | 8532008ec087258db622f80a02a667e4702128a0 /abs/extra/libisofs | |
parent | f31d77fb639657cbbf6bd9a0251a8adade34ab36 (diff) | |
download | linhes_pkgbuild-9cd8b36f79d9fc5ab6efc9d6722788926b7ceb22.zip linhes_pkgbuild-9cd8b36f79d9fc5ab6efc9d6722788926b7ceb22.tar.gz linhes_pkgbuild-9cd8b36f79d9fc5ab6efc9d6722788926b7ceb22.tar.bz2 |
libisofs: 1.5.2
Diffstat (limited to 'abs/extra/libisofs')
-rw-r--r-- | abs/extra/libisofs/PKGBUILD | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/abs/extra/libisofs/PKGBUILD b/abs/extra/libisofs/PKGBUILD index 6c5e0fc..3e5d030 100644 --- a/abs/extra/libisofs/PKGBUILD +++ b/abs/extra/libisofs/PKGBUILD @@ -1,30 +1,28 @@ -# $Id$ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Hugo Doria <hugodoria@gmail.com> # Contributor: Bjorn Martensen pkgname=libisofs -pkgver=1.4.8 -pkgrel=1 +pkgver=1.5.2 +pkgrel=2 pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image" arch=('x86_64') url="https://dev.lovelyhq.com/libburnia" license=('GPL') depends=('acl' 'zlib') source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz{,.sig}) -sha256sums=('dc9de9df366c27cf03d31d860c83a08ddad9028fe192801ee344602ccec29b69' +sha256sums=('ef5a139600b3e688357450e52381e40ec26a447d35eb8d21524598c7b1675500' 'SKIP') validpgpkeys=('44BC9FD0D688EB007C4DD029E9CBDFC0ABC0A854') # Thomas Schmitt <scdbackup@gmx.net> build() { - cd ${pkgname}-${pkgver} + cd "${pkgname}"-${pkgver} ./configure --prefix=/usr \ --enable-libacl --enable-xattr --disable-static make } package() { - cd ${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install + cd "${pkgname}"-${pkgver} + make DESTDIR="${pkgdir}" install } - |