desktop/ifuse/PKGBUILD

32 lines
643 B
Bash
Raw Normal View History

#
2012-11-23 04:48:08 +08:00
# Apps Packages for Chakra, part of chakra-project.org
#
2012-11-23 04:48:08 +08:00
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ifuse
2012-11-23 04:48:08 +08:00
pkgver=1.1.2
2013-07-27 20:44:47 +08:00
pkgrel=2
pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch'
url='http://libimobiledevice.org/'
2012-11-23 04:48:08 +08:00
arch=('x86_64')
license=('LGPL2.1')
depends=('libimobiledevice' 'fuse')
2012-03-06 19:37:36 +08:00
categories=('utils')
source=("http://www.libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2")
2012-11-23 04:48:08 +08:00
md5sums=('4152526b2ac3c505cb41797d997be14d')
build() {
cd ${pkgname}-${pkgver}
./configure \
--prefix=/usr
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}