desktop/ifuse/PKGBUILD

29 lines
608 B
Bash
Raw Normal View History

2014-06-03 05:20:42 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ifuse
2014-06-03 05:20:42 +08:00
pkgver=1.1.3
pkgrel=4
2014-06-03 05:20:42 +08:00
pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch'
url='http://libimobiledevice.org/'
arch=('x86_64')
license=('LGPL2.1')
depends=('libimobiledevice' 'fuse' 'libusbmuxd' 'libplist')
2014-06-03 05:20:42 +08:00
categories=('utils')
source=("http://www.libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2")
md5sums=('83478c7b531b26db286c293bb25bd917')
build() {
2011-01-22 07:02:07 +08:00
cd ${pkgname}-${pkgver}
2011-01-22 07:02:07 +08:00
./configure \
--prefix=/usr
2011-01-22 07:02:07 +08:00
make
}
package() {
cd ${pkgname}-${pkgver}
2011-01-22 07:02:07 +08:00
make DESTDIR=${pkgdir} install
}