wok-next view f2fs-tools/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 0e8dadf052b9
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="f2fs-tools"
4 VERSION="1.8.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Userland tools for the Flash-Friendly File System (F2FS)"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/about/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$TARBALL"
14 BUILD_DEPENDS="automake libtool util-linux-uuid-dev"
15 SPLIT="f2fs-tools-dev"
17 compile_rules() {
18 autoreconf -fi &&
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 *-tools)
28 copy @std
29 DEPENDS="util-linux-uuid"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="f2fs-tools util-linux-uuid-dev"
34 ;;
35 esac
36 }