wok-next annotate f2fs-tools/receipt @ rev 20367

pywebkitgtk: up and use webkitgtk; claws-mail-dev: update dependencies.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 24 15:34:52 2017 +0200 (2017-11-24)
parents 2d1a6601c331
children 835b3b8ce6ac
rev   line source
al@19816 1 # SliTaz package receipt v2.
pascal@18219 2
pascal@18219 3 PACKAGE="f2fs-tools"
al@19816 4 VERSION="1.8.0"
pascal@18219 5 CATEGORY="system-tools"
al@19816 6 SHORT_DESC="Userland tools for the Flash-Friendly File System (F2FS)"
pascal@18219 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18219 8 LICENSE="GPL2"
al@19816 9 WEB_SITE="https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/about/"
pascal@18219 10
al@19816 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19816 12 WGET_URL="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$TARBALL"
al@19816 13
al@19816 14 BUILD_DEPENDS="automake libtool util-linux-uuid-dev"
al@19816 15 SPLIT="f2fs-tools-dev"
pascal@18219 16
pascal@18219 17 # Rules to configure and make the package.
pascal@18219 18 compile_rules()
pascal@18219 19 {
al@19816 20 autoreconf -fi &&
al@19816 21 ./configure $CONFIGURE_ARGS && make && make install
pascal@18219 22 }
pascal@18219 23
pascal@18219 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18219 25 genpkg_rules()
pascal@18219 26 {
al@19816 27 case $PACKAGE in
al@19816 28 *-tools)
al@19816 29 copy @std
al@19816 30 DEPENDS="util-linux-uuid"
al@19816 31 ;;
al@19816 32 *-dev)
al@19816 33 copy @dev
al@19816 34 DEPENDS="f2fs-tools util-linux-uuid-dev"
al@19816 35 ;;
al@19816 36 esac
pascal@18219 37 }