blob: bf0e3bb557f2267e5143132701290cb96e5ee483 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer (Arch): Nicolas Quiénot <niQo @ aur>
pkgname=ginn
pkgver=0.2.6
pkgrel=2
pkgdesc="A deamon with jinn-like wish-granting capabilities"
url="http://launchpad.net/ginn"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
depends=('geis' 'bamf2' 'libxtst' 'libwnck')
source=(http://launchpad.net/ginn/0.x/${pkgver}/+download/ginn-${pkgver}.tar.gz)
package() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install || return 1
}
md5sums=('008854147f0809877b3e7ccf5af5337f')
|