summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7dcc7c504105baa7fe0ceff03e427539840bf357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: tinywrkb <tinywrkb@gmail.com>
# Contributor: Joeny Ang <ang(dot)joeny(at)gmail(dot)com>
# Contributor: Matías Hernández <msdark(at)archlinux(dot)cl>
# Contributor: Hugo Ideler <hugoideler(at)dse(dot)nl>

pkgname=ideviceinstaller
pkgver=1.1.1
pkgrel=1
pkgdesc="Manage Applications of an iPhone or iPod Touch"
arch=('i686' 'x86_64')
url="http://www.libimobiledevice.org/"
license=('GPL2')
depends=('usbmuxd' 'libzip') 
source=("https://github.com/libimobiledevice/${pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('b1401678a61f28c4aca95375c100b5a83ccc2cdfa0222c0de7ad0a2cfb4e3c9f')

build() {
  cd ${pkgname}-${pkgver}

  sed -i "/AS_COMPILER_FLAGS(/s/-Werror//" configure.ac
  ./autogen.sh --prefix=/usr
  make
}

package() {
  cd ${pkgname}-${pkgver}

  make DESTDIR=${pkgdir} install
}