wok view fastjar/receipt @ rev 18747

marble: one desktop entry only (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 26 13:11:10 2015 +0100 (2015-12-26)
parents d504ac231f94
children bfabe25c21ff
line source
1 # SliTaz package receipt.
3 PACKAGE="fastjar"
4 VERSION="0.98"
5 CATEGORY="development"
6 SHORT_DESC="A fast C implementation of the JDK jar utility."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://savannah.nongnu.org/projects/fastjar/"
11 WGET_URL="http://download.savannah.gnu.org/releases-noredirect/fastjar/$TARBALL"
12 TAGS="java"
14 DEPENDS="glibc-base zlib"
15 BUILD_DEPENDS="slitaz-toolchain zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }