updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / libimobiledevice-git / PKGBUILD
blob66b5562518754f6c5b0d5aa14b18950447f4ecae
1 # Maintainer: sebikul <sebikul@gmail.com>
2 # Contributor: Matias Hernandez <msdark@archlinux.cl>
4 pkgname=libimobiledevice-git
5 pkgver=20111213
6 pkgrel=1
7 pkgdesc="libimobiledevice is a software library that talks the protocols to support iPhone and iPod Touch devices on Linux"
8 url="http://www.libimobiledevice.org/"
9 arch=('i686' 'x86_64')
10 license=('GPL2' 'LGPL2.1')
11 depends=('gnutls' 'libgcrypt' 'glib2' 'libplist' 'usbmuxd')
12 makedepends=('swig' 'python2')
13 provides=('libiphone-git' 'libiphone' 'libimobiledevice=1.2')
14 conflicts=('libiphone-git' 'libiphone' 'libimobiledevice')
15 options=(!libtool)
16 replaces=()
17 backup=()
18 options=()
19 install=
20 noextract=()
21 md5sums=() #generate with 'makepkg -g'
23 _gitroot="git://git.sukimashita.com/libimobiledevice.git"
24 _gitname="libimobiledevice"
26 build() {
27   cd "$srcdir"
28   msg "Connecting to GIT server...."
30   if [ -d $_gitname ] ; then
31     cd $_gitname && git pull origin
32     msg "The local files are updated."
33   else
34     git clone $_gitroot $_gitname
35   fi
37   msg "GIT checkout done or server timeout"
38   msg "Starting make..."
40   rm -rf "$srcdir/$_gitname-build"
41   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
42   cd "$srcdir/$_gitname-build"
44   #
45   # BUILD HERE
46   #
47   PYTHON=/usr/bin/python2 ./autogen.sh --prefix=/usr --without-swig
48   make || return 1
49   make DESTDIR="$pkgdir/" install