Initial bep for zopfli, using -999 as there is not yet a release, it just builds current version from git.

Fixed copyright entries for old zlib lib .bep files.
This commit is contained in:
Scott McCreary
2013-03-16 18:16:42 +00:00
parent 3739a8111c
commit b9ddcab97d
3 changed files with 26 additions and 2 deletions

View File

@@ -16,4 +16,4 @@ INSTALL {
make install
}
LICENSE="Zlib"
COPYRIGHT="Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler"
COPYRIGHT="1995-2005 Jean-loup Gailly and Mark Adler"

View File

@@ -17,4 +17,4 @@ INSTALL {
make install
}
LICENSE="Zlib"
COPYRIGHT="Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler"
COPYRIGHT="1995-2005 Jean-loup Gailly and Mark Adler"

View File

@@ -0,0 +1,24 @@
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."