diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gmrun/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gmrun/PKGBUILD')
-rw-r--r-- | community/gmrun/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/gmrun/PKGBUILD b/community/gmrun/PKGBUILD new file mode 100644 index 000000000..d5d961018 --- /dev/null +++ b/community/gmrun/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 8461 2010-01-20 08:07:38Z dgriffiths $ +# Maintainer: Jeff Mickey <j@codemac.net> +# Contributor: Woody Gilk aka Shadowhand <woody.gilk@gmail.com> + +pkgname=gmrun +pkgver=0.9.2 +pkgrel=3 +pkgdesc="A simple program which provides a run program window" +arch=('i686' 'x86_64') +url="http://sf.net/projects/gmrun" +license=('GPL') +depends=('gtk2' 'popt') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz + gcc43.patch) +md5sums=('6cef37a968006d9496fc56a7099c603c' + '3a0b69d8c2cac6cfb551b9d235441ecb') + +build() { + cd $startdir/src/$pkgname-$pkgver + patch -p0 < $srcdir/gcc43.patch + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install +} |