wok-next view nilfs-utils/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="nilfs-utils"
4 VERSION="2.2.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="NILFS Filesystem user space tools"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://nilfs.sourceforge.io/"
10 #WGET_URL="https://github.com/nilfs-dev/nilfs-utils/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="http://nilfs.sourceforge.net/download/$TARBALL" # note, no $SF_MIRROR
15 BUILD_DEPENDS="automake libtool util-linux-uuid-dev util-linux-mount-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./autogen.sh &&
20 ./configure \
21 --with-libmount \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 *-utils)
31 copy @std
32 DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid"
33 CONFIG_FILES="/etc/nilfs_cleanerd.conf"
34 ;;
35 *-dev)
36 copy @dev
37 DEPENDS="nilfs-utils util-linux-uuid-dev"
38 ;;
39 esac
40 }