diff options
Diffstat (limited to 'community/gobby/PKGBUILD')
-rw-r--r-- | community/gobby/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/gobby/PKGBUILD b/community/gobby/PKGBUILD new file mode 100644 index 000000000..f2020893c --- /dev/null +++ b/community/gobby/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 65710 2012-02-22 10:19:25Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: William Rea <sillywilly@gmail.com> +# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> + +pkgname=gobby +pkgver=0.4.13 +pkgrel=1 +pkgdesc="A collaborative text editor" +arch=('i686' 'x86_64') +url="http://gobby.0x539.de" +license=('GPL') + +depends=('obby' 'libxml++' 'gtkmm' 'gnome-vfs' 'libbonobo' 'libgtksourceviewmm2' 'gtksourceview2') +#depends=('obby' 'libxml++2' 'gtkmm' 'gnome-vfs' 'libbonobo' 'libgtksourceviewmm2' +# 'gtksourceview2' 'libxml++' 'libunique' 'libinfinity' 'gsasl') + +makedepends=('gettext' 'intltool') +source=(http://releases.0x539.de/gobby/gobby-$pkgver.tar.gz) +md5sums=('3848687159dbc649587857543b8d7b85') + +build() { + cd $srcdir/gobby-$pkgver + ./configure --prefix=/usr --with-gnome + make + make DESTDIR=$pkgdir install + install -D -m644 contrib/gobby.desktop \ + $pkgdir/usr/share/applications/gobby.desktop +} |