summaryrefslogtreecommitdiff
path: root/community/gputils/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/gputils/PKGBUILD')
-rw-r--r--community/gputils/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/gputils/PKGBUILD b/community/gputils/PKGBUILD
new file mode 100644
index 000000000..db76af71b
--- /dev/null
+++ b/community/gputils/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 91611 2013-05-25 11:39:42Z bpiotrowski $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor: Johannes Martin <honzor@gmx.net>
+# Contributor: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
+# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
+
+pkgname=gputils
+pkgver=1.1.0
+pkgrel=2
+pkgdesc="PIC Programming Utilities"
+arch=('i686' 'x86_64')
+url="http://gputils.sourceforge.net/"
+license=('GPL')
+depends=('glibc')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('2bff2c595b6570ac9bd6efb692fde274')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}