updated on Mon Jan 16 20:00:43 UTC 2012
[aur-mirror.git] / tikzit / PKGBUILD
blob57bbf2d5c8d3696c369d3e082a979ee05e5dda32
1 pkgname=tikzit
2 pkgver=0.6
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=('e7d8e8b5f8ee1684cd0e0b17043031b9')
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: