PKGBUILDs/community/gtkperf/PKGBUILD

20 lines
543 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $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
}