summaryrefslogtreecommitdiff
path: root/community/gputils/PKGBUILD
blob: 0ca635b098c744f9fd77247abf1d0f4b2c231e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# $Id: PKGBUILD 75360 2012-08-21 09:13:35Z ebelanger $
# Contributor: Johannes Martin <honzor@gmx.net>
# Contributor: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>

pkgname=gputils
pkgver=0.14.2
pkgrel=1
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=('90fa2803e77723de32b482f6a57d9c5a')

build() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	./configure --prefix=/usr
	make
}

package() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	make DESTDIR="${pkgdir}" install
}