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

Up LibreOffice (6.0.2), TiMidity++, jack, zstd (1.3.3)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 07 23:09:42 2018 +0200 (2018-03-07)
parents 2d1a6601c331
children 835b3b8ce6ac
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 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf -fi &&
21 ./configure $CONFIGURE_ARGS && make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 case $PACKAGE in
28 *-tools)
29 copy @std
30 DEPENDS="util-linux-uuid"
31 ;;
32 *-dev)
33 copy @dev
34 DEPENDS="f2fs-tools util-linux-uuid-dev"
35 ;;
36 esac
37 }