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

Small improvements
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Sep 27 01:34:11 2018 +0300 (2018-09-27)
parents 0e8dadf052b9
children d5aab818505e
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
al@20569 17 compile_rules() {
al@19816 18 autoreconf -fi &&
al@20569 19 ./configure $CONFIGURE_ARGS &&
al@20569 20 fix libtool &&
al@20569 21 make &&
al@20569 22 make install
pascal@18219 23 }
pascal@18219 24
al@20569 25 genpkg_rules() {
al@19816 26 case $PACKAGE in
al@19816 27 *-tools)
al@19816 28 copy @std
al@19816 29 DEPENDS="util-linux-uuid"
al@19816 30 ;;
al@19816 31 *-dev)
al@19816 32 copy @dev
al@19816 33 DEPENDS="f2fs-tools util-linux-uuid-dev"
al@19816 34 ;;
al@19816 35 esac
pascal@18219 36 }