Date: Saturday, May 6, 2023 @ 17:21:31
Author: heftig
Revision: 1459060
archrelease: copy trunk to community-staging-x86_64
Added:
ifuse/repos/community-staging-x86_64/
ifuse/repos/community-staging-x86_64/PKGBUILD
(from rev 1459059, ifuse/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: ifuse/repos/community-staging-x86_64/PKGBUILD (from rev 1459059,
ifuse/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-05-06 17:21:31 UTC (rev 1459060)
@@ -0,0 +1,42 @@
+# Contributor: 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=4
+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
+ usbmuxd
+)
+makedepends=(git)
+_commit=33434dec21198de11cea78325321d55ebb7bd71f # tags/1.1.4
+source=("git+https://github.com/libimobiledevice/ifuse#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd ifuse
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+build() {
+ cd ifuse
+ ./autogen.sh --prefix=/usr
+ make
+}
+
+package() {
+ cd ifuse
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set sw=2 sts=-1 et: