Date: Tuesday, August 12, 2014 @ 13:48:59
  Author: bpiotrowski
Revision: 219619

community2extra: Moving protobuf from community to extra

Added:
  protobuf/
  protobuf/repos/
  protobuf/trunk/
  protobuf/trunk/PKGBUILD

----------+
 PKGBUILD |   39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

Added: protobuf/trunk/PKGBUILD
===================================================================
--- protobuf/trunk/PKGBUILD                             (rev 0)
+++ protobuf/trunk/PKGBUILD     2014-08-12 11:48:59 UTC (rev 219619)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase <s...@lutzhaase.com>
+# Contributor: Thomas S Hatch <thatc...@gmail.com>
+# Contributor: Geoffroy Carrier <geoff...@archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1...@archlinux.us>
+
+pkgbase=protobuf
+pkgname=('protobuf' 'python2-protobuf')
+pkgver=2.5.0
+pkgrel=4
+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')
+makedepends=('python2' 'setuptools')
+source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
+md5sums=('a72001a9067a4c2c4e0e836d0f92ece4')
+
+build() {
+       cd $srcdir/$pkgname-$pkgver
+       ./autogen.sh
+       ./configure --prefix=/usr --disable-static
+}
+
+package_protobuf() {
+       cd $srcdir/$pkgname-$pkgver
+       make DESTDIR=$pkgdir install
+}
+
+package_python2-protobuf() {
+       pkgdesc="protobuf python API"
+       depends=("python2" "protobuf=${pkgver}")
+    provides=("protobuf-python")
+    conflicts=("protobuf-python")
+    replaces=("protobuf-python")
+
+       cd $srcdir/protobuf-$pkgver/python
+       python2 setup.py install --prefix=/usr --root $pkgdir
+}


Property changes on: protobuf/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property

Reply via email to