summaryrefslogtreecommitdiff
path: root/community/gtkperf
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/gtkperf
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/gtkperf')
-rw-r--r--community/gtkperf/PKGBUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/community/gtkperf/PKGBUILD b/community/gtkperf/PKGBUILD
new file mode 100644
index 000000000..144e03df5
--- /dev/null
+++ b/community/gtkperf/PKGBUILD
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 65550 2012-02-21 08:52:47Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: William Rea <sillywilly@gmail.com>
+pkgname=gtkperf
+pkgver=0.40
+pkgrel=4
+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 $srcdir/$pkgname
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$pkgdir install
+ mv ${pkgdir}/usr/doc ${pkgdir}/usr/share/
+}