diff options
Diffstat (limited to 'community/libinfinity/PKGBUILD')
-rw-r--r-- | community/libinfinity/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/libinfinity/PKGBUILD b/community/libinfinity/PKGBUILD new file mode 100644 index 000000000..1cc5479ee --- /dev/null +++ b/community/libinfinity/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 44189 2011-04-04 13:07:36Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Gregory Haynes <greg@greghaynes.net> + +pkgname=libinfinity +pkgver=0.4.2 +pkgrel=2 +pkgdesc="An implementation of the Infininote protocol written in GObject-based C" +arch=('i686' 'x86_64') +url="http://gobby.0x539.de" +license=('GPL') +depends=('gnutls>=1.7.2' 'gsasl>=0.2.21' 'glib2>=2.16' 'libxml2>=2.0' 'gtk2') +makedepends=('gtk-doc' 'pkgconfig') +optdepends=('avahi: zeroconf support' + 'gtk2: gtk support') +options=('!libtool') +source=("http://releases.0x539.de/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('db9b0622b6a42d70bb88c9d284692578') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --localstatedir=/var + make + make DESTDIR="${pkgdir}" install + rm -rf $pkgdir/var +} |