updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / pympdjuke / PKGBUILD
blob88c40269f05ea1894020a00d6eb76d67fc4b2ef6
1 # Contributor: Thomas Lundgaard <thomaslundgaard at gmail>
2 pkgname="pympdjuke"
3 pkgver=1.0beta1
4 pkgrel=1
5 pkgdesc="A small mpd frontend, intended to be used as a jukebox at parties. With on-screen keyboard for fancy touch-screens."
6 arch=(i686 x86_64)
7 url="http://github.com/thomaslundgaard/PyMpdJuke"
8 license=('GPLv3')
9 groups=()
10 depends=(python-mpd pyqt)
11 makedepends=()
12 optdepends=(mpd)
13 provides=()
14 conflicts=()
15 replaces=()
16 backup=()
17 options=()
18 install=()
19 source=("http://cloud.github.com/downloads/thomaslundgaard/PyMpdJuke/$pkgname-$pkgver.tar.bz2")
20 noextract=()
21 md5sums=(56a67ced8733f72e152d18fddfbf955b)
23 build() {
24   cd "$srcdir/$pkgname-$pkgver"
26   make || return 1
27   make DESTDIR="$pkgdir/usr" install || return 1
30 # vim:set ts=2 sw=2 et: