summaryrefslogtreecommitdiff
path: root/community-staging/gummi/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-06-25 00:01:42 +0000
committerroot <root@rshg054.dnsready.net>2012-06-25 00:01:42 +0000
commit3b99c42eb8ca744e86e4e17197b1bf10642c6785 (patch)
tree32a8e3b87b35056995f805dec0e5a108425354c7 /community-staging/gummi/PKGBUILD
parent4319f36e44d4e7c70bf010c3286bb1739c59d4de (diff)
Mon Jun 25 00:01:41 UTC 2012
Diffstat (limited to 'community-staging/gummi/PKGBUILD')
-rw-r--r--community-staging/gummi/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community-staging/gummi/PKGBUILD b/community-staging/gummi/PKGBUILD
new file mode 100644
index 000000000..1a4208c06
--- /dev/null
+++ b/community-staging/gummi/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 72840 2012-06-23 19:39:50Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Sergio A. Morales <sergiomorales@archlinux.cl>
+# Contributor: soeren <nonick@posteo.de>
+
+pkgname=gummi
+pkgver=0.6.3
+pkgrel=3
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler>=0.20.0' 'intltool')
+install=$pkgname.install
+source=("http://dev.midnightcoding.org/projects/$pkgname/latest.tar.gz")
+sha256sums=('d44196e56ed61e125bba01e5949be0928cf09919fdb80e62e6a41999a478f0ed')
+
+build() {
+ cd "$pkgname-$pkgver"
+
+ find . -type f -exec touch {} \;
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+
+ make prefix="$pkgdir/usr" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et: