wok view jfsutils/receipt @ rev 25465

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 01 08:33:11 2022 +0000 (19 months ago)
parents 7dd01dedad38
children f7324cde07d7
line source
1 # SliTaz package receipt.
3 PACKAGE="jfsutils"
4 VERSION="1.1.15"
5 CATEGORY="system-tools"
6 TAGS="filesystem"
7 SHORT_DESC="Utilities for manipulating jfs file-system."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://sourceforge.net/projects/jfs/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}project/pub/$TARBALL"
15 DEPENDS="util-linux-uuid"
16 BUILD_DEPENDS="util-linux-uuid-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - http://jfs.sourceforge.net/jfs_lr.html 2>/dev/null | \
22 sed '/release/!d;s|.*release ||;s| is.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure \
29 --prefix=/usr \
30 --infodir=/usr/share/info \
31 --mandir=/usr/share/man \
32 $CONFIGURE_ARGS &&
33 make -j 1 &&
34 make DESTDIR=$DESTDIR install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr
41 cp -a $install/usr/sbin $fs/usr
42 }