PKGBUILDs/community/gputils/PKGBUILD

21 lines
599 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# Contributor: Johannes Martin <honzor@gmx.net>
# Contributor: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=gputils
pkgver=0.13.7
pkgrel=1
pkgdesc="PIC Programming Utilities"
arch=('i686' 'x86_64')
license=('GPL')
url="http://gputils.sourceforge.net/"
depends=()
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('242e33919e9c318d6ac58b6db291d20e')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}