mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:57:13 +08:00
28 lines
706 B
Bash
28 lines
706 B
Bash
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=libimobiledevice
|
|
pkgver=1.1.5
|
|
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' 'glib2' 'libplist' 'usbmuxd' 'libgcrypt')
|
|
makedepends=('python2')
|
|
options=('!libtool')
|
|
source=("http://libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('d9debdcf71508dee2c85b60b28ccddd4')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
PYTHON=/usr/bin/python2 ./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|