From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/protobuf/PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 community/protobuf/PKGBUILD (limited to 'community/protobuf') diff --git a/community/protobuf/PKGBUILD b/community/protobuf/PKGBUILD new file mode 100644 index 000000000..a91085f0b --- /dev/null +++ b/community/protobuf/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Thomas S Hatch +# Contributor: Geoffroy Carrier +# Contributor: Daniel J Griffiths + +pkgname=protobuf +pkgver=2.4.0a +pkgrel=1 +pkgdesc="A way of encoding structured data in an efficient yet extensible format" +arch=('i686' 'x86_64') +url="http://code.google.com/p/protobuf/" +license=('APACHE') +depends=('gcc-libs' 'zlib') +options=(!libtool) +source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.bz2) +md5sums=('61df3f63ec284fc6f57a68c67e4918c6') + +build() { + cd $srcdir/$pkgname-$pkgver + ./autogen.sh + ./configure --prefix=/usr --disable-static +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make DESTDIR=$pkgdir install +} -- cgit v1.2.3-54-g00ecf