Files
haikuports/sys-libs/zopfli/zopfli-999.recipe
Oliver Tappe 60aba35d64 * convert all .bep files to follow shell syntax
* rename all .bep files to .recipe
2013-03-29 16:31:03 +00:00

27 lines
583 B
Plaintext

DESCRIPTION="Zopfli Compression Algorithm is a zlib (gzip, deflate) compatible compressor."
HOMEPAGE="http://code.google.com/p/zopfli"
SRC_URI="git+https://code.google.com/p/zopfli/"
#CHECKSUM_MD5="abc123"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
MESSAGE="This port only builds with gcc4. Use 'setgcc gcc4' before building."
BUILD()
{
cd zopfli-999
sed -i 's/\-lm//' makefile
make
}
INSTALL()
{
cd zopfli-999
BINDIR=${DESTDIR}/`finddir B_COMMON_BIN_DIRECTORY`
mkdir -p ${BINDIR}
cp -r zopfli ${BINDIR}/zopfli
}
LICENSE="Apache v2"
COPYRIGHT="2011-2013 Google Inc."