wok-6.x annotate f2fs-tools/receipt @ rev 19092
Add brower-html5 virtual package (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun May 01 10:46:33 2016 +0200 (2016-05-01) |
parents | |
children | 401224c936cc |
rev | line source |
---|---|
pascal@18219 | 1 # SliTaz package receipt. |
pascal@18219 | 2 |
pascal@18219 | 3 PACKAGE="f2fs-tools" |
pascal@18219 | 4 VERSION="1.4.1" |
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 } |