Files
haikuports/app-arch/fastjar/fastjar-0.98.recipe
Jerome Duval fc0936b040 Bump revisions for x86_64 rebuild after time_t change.
* a few apps needed build fix for time_t.
* disable compatibility packages for x86_64.
2017-06-27 15:46:25 +02:00

53 lines
1.1 KiB
Bash

SUMMARY="A jar(java archive) program written in C"
DESCRIPTION="
FastJar is an attempt at creating a feature-for-feature copy of Sun's JDK's \
'jar' command. Sun's jar (or Blackdown's for that matter) is written entirely \
in Java which makes it dog slow. Since FastJar is written in C, it can create \
the same .jar file as Sun's tool in a fraction of the time."
HOMEPAGE="https://savannah.nongnu.org/projects/fastjar"
COPYRIGHT="1999-2001 Bryan Burns, Cory Jon Hollingsworth, Matthias Klose (documentation)
2007-2009 Dalibor Topic"
LICENSE="GNU GPL v2"
REVISION="2"
SOURCE_URI="http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz"
CHECKSUM_SHA256="f156abc5de8658f22ee8f08d7a72c88f9409ebd8c7933e9466b0842afeb2f145"
ARCHITECTURES="x86 ?x86_gcc2 x86_64"
PROVIDES="
fastjar = $portVersion
cmd:fastjar = $portVersion
cmd:grepjar = $portVersion
"
REQUIRES="
haiku
lib:libz
"
BUILD_REQUIRES="
haiku_devel
devel:libz
"
BUILD_PREREQUIRES="
cmd:autoreconf
cmd:autoconf
cmd:aclocal
cmd:automake
cmd:libtoolize
cmd:make
cmd:gcc
"
BUILD()
{
autoreconf -vfi
runConfigure ./configure
make
}
INSTALL()
{
make install
rm -rf $libDir
}