wok-next annotate nilfs-utils/receipt @ rev 20704

weechat: update (b)deps.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 25 17:29:33 2018 +0300 (2018-05-25)
parents d43bf7aae921
children d5aab818505e
rev   line source
al@19816 1 # SliTaz package receipt v2.
pascal@18218 2
pascal@18218 3 PACKAGE="nilfs-utils"
al@19816 4 VERSION="2.2.6"
pascal@18218 5 CATEGORY="system-tools"
al@19816 6 SHORT_DESC="NILFS Filesystem user space tools"
pascal@18218 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18218 8 LICENSE="GPL2 LGPL2.1"
al@19816 9 WEB_SITE="http://nilfs.sourceforge.net/"
al@19816 10 #WGET_URL="https://github.com/nilfs-dev/nilfs-utils/"
pascal@18218 11
al@19816 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@19816 13 WGET_URL="http://nilfs.sourceforge.net/download/$TARBALL" # note, no $SF_MIRROR
al@19816 14
al@19816 15 BUILD_DEPENDS="automake libtool util-linux-uuid-dev util-linux-mount-dev"
al@19816 16 SPLIT="nilfs-utils-dev"
pascal@18218 17
al@20513 18 compile_rules() {
al@19816 19 ./autogen.sh &&
al@19816 20 ./configure \
al@19816 21 --with-libmount \
pascal@18218 22 $CONFIGURE_ARGS &&
al@20601 23 fix libtool &&
al@20601 24 make &&
al@20601 25 make install
pascal@18218 26 }
pascal@18218 27
al@20513 28 genpkg_rules() {
al@19816 29 case $PACKAGE in
al@19816 30 *-utils)
al@19816 31 copy @std
al@19816 32 DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid"
al@19816 33 CONFIG_FILES="/etc/nilfs_cleanerd.conf"
al@19816 34 ;;
al@19816 35 *-dev)
al@19816 36 copy @dev
al@19816 37 DEPENDS="nilfs-utils util-linux-uuid-dev"
al@19816 38 ;;
al@19816 39 esac
pascal@18218 40 }