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