updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / tikzit / PKGBUILD
blob5e8c82d7eedc5db8ce2274f181d95c279cfbf6e4
1 pkgname=tikzit
2 pkgver=0.7
3 pkgrel=1
4 pkgdesc="Allows the creation and modification of TeX diagrams written using the pgf/TikZ macro library"
5 arch=('i686' 'x86_64')
6 url="http://sourceforge.net/projects/tikzit/"
7 license=('GPL')
8 depends=('gnustep-base>=1.18.0' 'gtk2>=2.18.0'
9          'poppler-glib' 'hicolor-icon-theme' 'desktop-file-utils')
10 makedepends=('gcc-objc')
11 install="tikzit.install"
12 source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
13 md5sums=('9685932073b0c0c144d4744ed4b2e5be')
15 build() {
16   source /etc/profile.d/GNUstep.sh
17   cd "$srcdir/$pkgname-$pkgver"
18   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
19   make || return 1
22 package() {
23   source /etc/profile.d/GNUstep.sh
24   cd "$srcdir/$pkgname-$pkgver"
25   make "DESTDIR=$pkgdir" install || return 1
28 # vim: set ts=2 sw=2 et: