summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f1a2f621b6c66dbab4d7e6a248e43562f0af4022 (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
30
31
32
33
# Maintainer: Michael Gerhaeuser <michael dot gerhaeuser at gmail dot com>

pkgname=libusbmuxd-git
pkgver=1.0.10.r3.g4d365ee
pkgrel=1
pkgdesc="The usbmuxd communication interface library"
url="http://www.libimobiledevice.org/"
arch=('i686' 'x86_64')
license=('LGPL2.1')
depends=('libplist-git')
makedepends=('git')
provides=('libusbmuxd')
conflicts=('libusbmuxd')

source=("git://git.sukimashita.com/libusbmuxd.git")
sha512sums=('SKIP')

pkgver() {
	cd libusbmuxd
	git describe --long --tags | sed 's/-/.r/; s/-/./'
}

build() {
	cd libusbmuxd

	./autogen.sh --prefix=/usr
	make
}

package() {
	cd libusbmuxd
	make DESTDIR="$pkgdir" install
}