diff options
author | root <root@rshg054.dnsready.net> | 2012-08-05 00:04:11 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-08-05 00:04:11 +0000 |
commit | 9b4356a4ce894946739f7fff9411f62be0fbc122 (patch) | |
tree | 29999235b5b73068c5ddb4dc1239dcf7c66397fa /staging | |
parent | f8ac5d4703080cc87ba2fe36f68df745d3a5f62f (diff) |
Sun Aug 5 00:04:11 UTC 2012
Diffstat (limited to 'staging')
-rw-r--r-- | staging/ifuse/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/staging/ifuse/PKGBUILD b/staging/ifuse/PKGBUILD new file mode 100644 index 000000000..6ee370576 --- /dev/null +++ b/staging/ifuse/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 74529 2012-07-29 23:09:58Z tomegun $ +# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Contributor: Gabriel Martinez < reitaka at gmail dot com > + +pkgname=ifuse +pkgver=1.1.2 +pkgrel=2 +pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch' +url='http://libimobiledevice.org/' +arch=('i686' 'x86_64') +license=('LGPL2.1') +depends=('libimobiledevice' 'fuse') +source=("http://www.libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2") +md5sums=('4152526b2ac3c505cb41797d997be14d') + +build() { + cd "${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |