diff options
author | root <root@rshg054.dnsready.net> | 2011-10-06 23:14:37 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-06 23:14:37 +0000 |
commit | 5442e9b8f357932ed5d6cb46e90fcbf6f453469f (patch) | |
tree | e2393e2f381e2e539810e51c34e56c8f687c153c /community-staging/gummi | |
parent | 068f1f30c0bba25b6b88cefbe982a72535fa1951 (diff) |
Thu Oct 6 23:14:37 UTC 2011
Diffstat (limited to 'community-staging/gummi')
-rw-r--r-- | community-staging/gummi/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community-staging/gummi/PKGBUILD b/community-staging/gummi/PKGBUILD new file mode 100644 index 000000000..dc4b902b2 --- /dev/null +++ b/community-staging/gummi/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Contributor: Sergio A. Morales <sergiomorales@archlinux.cl> +# Contributor: soeren <nonick@posteo.de> + +pkgname=gummi +pkgver=0.5.8 +pkgrel=3 +pkgdesc='Simple LaTex editor for GTK users' +arch=('i686' 'x86_64') +url='http://gummi.midnightcoding.org/' +license=('MIT') +depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib') +makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool') +source=("http://dev.midnightcoding.org/redmine/attachments/download/141/gummi-0.5.8-2.tar.gz") +md5sums=('79cd1360779125ad85a0f0b459951b27') + +build() { + cd ${pkgname}-${pkgver} + + find . -type f -exec touch {} \; + + ./configure \ + --prefix=/usr + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make prefix=${pkgdir}/usr install +} |