mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 16:34:37 +08:00
29 lines
666 B
Bash
29 lines
666 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=protobuf
|
|
pkgver=2.4.1
|
|
pkgrel=1
|
|
pkgdesc="A way of encoding structured data in an efficient yet extensible format."
|
|
arch=('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=('ed436802019c9e1f40cc750eaf78f318')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./autogen.sh
|
|
./configure --prefix=/usr --disable-static
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|