wok-next view f2fs-tools/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 835b3b8ce6ac
children 5696132719d9
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="$PACKAGE-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 }