# Maintainer: Fredrick R. Brennan # Contributor: A.T.W.A. # Contributor: Janne Heß pkgname=archivemount pkgver=0.9.1 pkgrel=2 pkgdesc="FUSE based filesystem for mounting compressed archives" arch=('i686' 'x86_64') url="https://www.cybernoia.de/software/archivemount.html" license=('GPL2') depends=('fuse' 'libarchive') makedepends=('automake' 'git' 'gcc') _githash=78c306538065de9b14f48cfc2024f50f843d3b29 _gituser=cybernoid source=("https://github.com/$_gituser/$pkgname/archive/$_githash.zip") sha256sums=('SKIP') prepare() { cd "${pkgname}-${_githash}" autoreconf -f || true automake -f --add-missing autoreconf -f } build() { cd "${pkgname}-${_githash}" ./configure --prefix=/usr make } package() { cd "${pkgname}-${_githash}" make DESTDIR="${pkgdir}" install }