updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / gexec / PKGBUILD
blob281ed5de4941dd3162a42480617c0d8cb74e582b
1 # Contributor: NiZoX <nizox@alterinet.org>
2 pkgname=gexec
3 pkgver=0.4
4 pkgrel=1
5 pkgdesc="gExec is a small GTK2 tool for running a command."
6 arch=(i686 x86_64)
7 url="http://www.electricmonk.nl/Programmings/Gexec"
8 license=('GPL')
9 groups=()
10 depends=()
11 makedepends=("gtk2")
12 provides=()
13 conflicts=()
14 replaces=()
15 backup=()
16 options=()
17 install=
18 source=(http://projects.electricmonk.nl/files/gExec/$pkgname-$pkgver.tar.gz \
19         Makefile.patch)
20 noextract=()
21 md5sums=('f10e68d5bcc206b759a2836886808d1d'
22          '4d7b56724e461fb7dba0b0d212fe218c') #generate with 'makepkg -g'
24 build() {
25   cd "$startdir/src/$pkgname"
26   patch -Np0 < $startdir/src/Makefile.patch
27   make || return 1
28   make DESTDIR="$startdir/pkg" install
31 # vim:set ts=2 sw=2 et: