core/libimobiledevice/PKGBUILD
2014-12-12 09:53:46 +00:00

27 lines
669 B
Bash

# maintainer abveritas@chakra-project.org
pkgname=libimobiledevice
pkgver=1.1.7
pkgrel=1
pkgdesc="Is a software library that talks the protocols to support iPhone and iPod Touch devices on Linux"
url="http://libimobiledevice.org/"
arch=('x86_64')
license=('GPL2' 'LGPL2.1')
depends=('gnutls' 'libusbmuxd' 'libgcrypt')
makedepends=('python2')
source=("http://libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2")
md5sums=('5649da76965c1d2c250e52c4e743ef71')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
PYTHON=/usr/bin/python2 ./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}