updated on Wed Jan 11 00:07:16 UTC 2012
[aur-mirror.git] / run-free / PKGBUILD
blob8b0cb8790263f837f551580dfd4dac573b3678a0
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Your Name <youremail@domain.com>
7 pkgname=run-free
8 pkgver=2.0.0
9 pkgrel=1
10 pkgdesc="A lightweight standalone GUI run command dialog"
11 arch=('i686 x86_64')
12 url="http://run-free.sourceforge.net"
13 license=('GPL')
14 depends=('gtk')
15 source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname%202.x/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz)
16 md5sums=('4a2644358efa222f04b29cc4bd8fa79e')
18 build() {
19   cd "$srcdir/$pkgname-$pkgver"
21   ./configure --prefix=/usr
22   make || return 1
23   make DESTDIR="$pkgdir/" install
26 # vim:set ts=2 sw=2 et: