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

Up dbus, pcmciautils, opus-tools; add syslinux-slitaz-repack (to substitute syslinux), syslinux-slitaz-extra-repack (to substitute syslinux-extra).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Aug 23 17:19:53 2017 +0300 (2017-08-23)
parents de813e146c92
children d43bf7aae921
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="http://nilfs.sourceforge.net/"
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="nilfs-utils-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure \
23 --with-libmount \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 case $PACKAGE in
32 *-utils)
33 copy @std
34 DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid"
35 CONFIG_FILES="/etc/nilfs_cleanerd.conf"
36 ;;
37 *-dev)
38 copy @dev
39 DEPENDS="nilfs-utils util-linux-uuid-dev"
40 ;;
41 esac
42 }