wok-next annotate reiserfsprogs/receipt @ rev 20049

Up transfig (3.2.6a)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 23 12:45:07 2017 +0200 (2017-10-23)
parents 7f78f61de159
children 10df65db91ad
rev   line source
al@19816 1 # SliTaz package receipt v2.
erjo@539 2
erjo@539 3 PACKAGE="reiserfsprogs"
al@19816 4 VERSION="3.6.27"
erjo@539 5 CATEGORY="system-tools"
erjo@539 6 SHORT_DESC="ReiserFS tools"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
erjo@539 9 WEB_SITE="http://www.sfr-fresh.com/linux/misc/"
erjo@539 10
al@19816 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19816 12 WGET_URL="https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v$VERSION/$TARBALL"
al@19816 13
al@19816 14 BUILD_DEPENDS="util-linux-uuid-dev libcomerr-dev acl-dev"
al@19816 15 SPLIT="reiserfsprogs-dev"
pascal@15000 16
erjo@539 17 # Rules to configure and make the package.
erjo@539 18 compile_rules()
erjo@539 19 {
al@19816 20 # http://www.linuxfromscratch.org/blfs/view/stable/postlfs/reiserfs.html
al@19816 21
al@19816 22 ./configure \
al@19816 23 --sbindir=/sbin \
al@19816 24 $CONFIGURE_ARGS &&
pascal@2447 25 make &&
al@19816 26 make install
erjo@539 27 }
erjo@539 28
erjo@539 29 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@539 30 genpkg_rules()
erjo@539 31 {
al@19816 32 case $PACKAGE in
al@19816 33 reiserfsprogs)
al@19816 34 copy @std
al@19816 35 DEPENDS="libcomerr util-linux-uuid linux-reiserfs"
al@19816 36 TAGS="filesystem reiserfs"
al@19816 37 ;;
al@19816 38 *-dev)
al@19816 39 copy @dev
al@19816 40 DEPENDS="reiserfsprogs libcomerr util-linux-uuid-dev"
al@19816 41 ;;
al@19816 42 esac
erjo@539 43 }