wok annotate f2fs-tools/receipt @ rev 21935

soundtouch: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 06 18:10:58 2019 +0200 (2019-10-06)
parents 2d1a6601c331
children d8c511e24c20
rev   line source
pascal@18219 1 # SliTaz package receipt.
pascal@18219 2
pascal@18219 3 PACKAGE="f2fs-tools"
pascal@20194 4 VERSION="1.10.0"
pascal@18219 5 CATEGORY="system-tools"
pascal@18219 6 SHORT_DESC="Userland tools for the f2fs filesystem."
pascal@18219 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18219 8 LICENSE="GPL2"
pascal@18219 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@18219 10 WEB_SITE="http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git"
pascal@18219 11 WGET_URL="git|git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git"
pascal@18219 12
pascal@18219 13 DEPENDS="util-linux-uuid"
pascal@18219 14 BUILD_DEPENDS="git autoconf automake libtool util-linux-uuid-dev"
pascal@18219 15
pascal@18219 16 # Rules to configure and make the package.
pascal@18219 17 compile_rules()
pascal@18219 18 {
pascal@18219 19 sh ./autogen.sh
pascal@18219 20 ./configure --prefix=/usr \
pascal@18219 21 $CONFIGURE_ARGS &&
pascal@18219 22 make &&
pascal@18219 23 make DESTDIR=$DESTDIR install
pascal@18219 24 }
pascal@18219 25
pascal@18219 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18219 27 genpkg_rules()
pascal@18219 28 {
pascal@18219 29 mkdir -p $fs/usr
pascal@18219 30 cp -a $install/usr/lib $fs/usr/
pascal@18219 31 cp -a $install/usr/sbin $fs/usr/
pascal@18219 32 }