mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
599 B
Bash
20 lines
599 B
Bash
# 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
|
|
}
|