mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-18 17:50:06 +02:00
32 lines
576 B
Plaintext
32 lines
576 B
Plaintext
DESCRIPTION="Google's Protocol Buffers -- an efficient method of encoding structured data"
|
|
HOMEPAGE="http://code.google.com/p/protobuf/"
|
|
SRC_URI="http://protobuf.googlecode.com/files/protobuf-2.4.1.tar.bz2"
|
|
CHECKSUM_MD5="ed436802019c9e1f40cc750eaf78f318"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
|
|
BUILD()
|
|
{
|
|
cd protobuf-2.4.1
|
|
libtoolize --force --copy --install
|
|
./autogen.sh
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd protobuf-2.4.1
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd protobuf-2.4.1
|
|
make check
|
|
}
|
|
|
|
LICENSE="Apache v2"
|
|
COPYRIGHT="2008 Google"
|