diff options
Diffstat (limited to 'community/obby/PKGBUILD')
-rw-r--r-- | community/obby/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/obby/PKGBUILD b/community/obby/PKGBUILD new file mode 100644 index 000000000..d10bf6798 --- /dev/null +++ b/community/obby/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 20481 2010-07-08 11:26:17Z 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=obby +pkgver=0.4.7 +pkgrel=2 +pkgdesc="A library which provides synced document buffers" +url="http://gobby.0x539.de" +options=('!libtool') +license=('GPL') +arch=('i686' 'x86_64') +depends=('net6' 'avahi' 'libsigc++') +source=(http://releases.0x539.de/obby/obby-$pkgver.tar.gz) +md5sums=('33fac4228c1efc1a1635bacf6480dc31') + +build() { + cd $srcdir/obby-$pkgver + ./configure --prefix=/usr --with-zeroconf --enable-ipv6 + make || return 1 + make DESTDIR=$pkgdir install +} |