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

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents d43bf7aae921
children d5aab818505e
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 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 }