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

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents 0e8dadf052b9
children 4a67f7e79846
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 compile_rules() {
19 ./autogen.sh &&
20 ./configure \
21 --with-libmount \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 *-utils)
29 copy @std
30 DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid"
31 CONFIG_FILES="/etc/nilfs_cleanerd.conf"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="nilfs-utils util-linux-uuid-dev"
36 ;;
37 esac
38 }