PKGBUILDs/community/gtkperf/PKGBUILD
2009-10-09 21:15:33 -05:00

19 lines
543 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=gtkperf
pkgver=0.40
pkgrel=2
pkgdesc="An application designed to test GTK+ performance"
arch=('i686' 'x86_64')
url="http://gtkperf.sourceforge.net"
license=("GPL")
depends=('gtk2')
source=(http://downloads.sourceforge.net/sourceforge/gtkperf/gtkperf_$pkgver.tar.gz)
md5sums=('4331dde4bb83865e15482885fcb0cc53')
build() {
cd $startdir/src/$pkgname
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}