Date: Sunday, February 6, 2022 @ 10:38:13 Author: jlichtblau Revision: 1126984
ifuse - moved to [community] Added: ifuse/ ifuse/repos/ ifuse/trunk/ ifuse/trunk/PKGBUILD ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Added: ifuse/trunk/PKGBUILD =================================================================== --- ifuse/trunk/PKGBUILD (rev 0) +++ ifuse/trunk/PKGBUILD 2022-02-06 10:38:13 UTC (rev 1126984) @@ -0,0 +1,30 @@ +# Maintainer: Jaroslav Lichtblau <[email protected]> +# Contributor: Carlo Abelli <[email protected]> +# Contributor: Giancarlo Razzolini <[email protected]> +# Contributor: Federico Cinelli <[email protected]> +# Contributor: Thomas Dziedzic < gostrc at gmail > +# Contributor: Gabriel Martinez < reitaka at gmail dot com > + +pkgname=ifuse +pkgver=1.1.4 +pkgrel=2 +pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch' +url='https://libimobiledevice.org/' +arch=('x86_64') +license=('LGPL2.1') +depends=('fuse2' 'libimobiledevice' 'libplist') +source=($pkgname-$pkgver.tar.gz::https://github.com/libimobiledevice/$pkgname/archive/refs/tags/$pkgver.tar.gz) +sha256sums=('2a00769e8f1d8bad50898b9d00baf12c8ae1cda2d19ff49eaa9bf580e5dbe78c') + +build() { + cd "$pkgname-$pkgver" + + ./autogen.sh --prefix=/usr + make +} + +package() { + cd "$pkgname-$pkgver" + + make DESTDIR="${pkgdir}" install +}
