wok annotate jfsutils/receipt @ rev 14999

Add GPL3 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 13:52:56 2013 +0000 (2013-08-10)
parents 73641efed1cc
children eb7ee081259f
rev   line source
pascal@1690 1 # SliTaz package receipt.
pascal@1690 2
pascal@1690 3 PACKAGE="jfsutils"
erjo@4731 4 VERSION="1.1.14"
pascal@1690 5 CATEGORY="system-tools"
pascal@1690 6 SHORT_DESC="Utilities for manipulating jfs file-system."
pascal@1690 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@1690 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1690 10 WEB_SITE="http://jfs.sourceforge.net/"
pascal@1690 11 WGET_URL="${WEB_SITE}project/pub/$TARBALL"
pascal@14999 12 TAGS="filesystem"
pascal@14999 13
pankso@12481 14 DEPENDS="util-linux-uuid"
pascal@1690 15 BUILD_DEPENDS="e2fsprogs-dev"
pascal@1690 16
pascal@1690 17 # Rules to configure and make the package.
pascal@1690 18 compile_rules()
pascal@1690 19 {
pascal@1690 20 cd $src
pascal@1690 21 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1690 22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1690 23 make &&
pascal@14999 24 make DESTDIR=$DESTDIR install
pascal@1690 25 }
pascal@1690 26
pascal@1690 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1690 28 genpkg_rules()
pascal@1690 29 {
pascal@1690 30 mkdir -p $fs/usr
pascal@14999 31 cp -a $install/usr/sbin $fs/usr
pascal@1690 32 }
pascal@1690 33