wok-next diff reiserfsprogs/receipt @ rev 19844

sakura -> sakura-gtk2; vte -> vte-gtk2; add sakura, vte; up gtk-engines, lxde, wpa_supplicant.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 25 15:45:11 2017 +0300 (2017-08-25)
parents 7f78f61de159
children 10df65db91ad
line diff
     1.1 --- a/reiserfsprogs/receipt	Sat Feb 14 21:28:06 2015 +0000
     1.2 +++ b/reiserfsprogs/receipt	Fri Aug 25 15:45:11 2017 +0300
     1.3 @@ -1,32 +1,43 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="reiserfsprogs"
     1.8 -VERSION="3.6.24"
     1.9 +VERSION="3.6.27"
    1.10  CATEGORY="system-tools"
    1.11  SHORT_DESC="ReiserFS tools"
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15  WEB_SITE="http://www.sfr-fresh.com/linux/misc/"
    1.16 -WGET_URL="http://www.sfr-fresh.com/linux/misc/$TARBALL"
    1.17 -TAGS="filesystem reiserfs"
    1.18  
    1.19 -DEPENDS="linux-reiserfs util-linux-uuid"
    1.20 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.21 +WGET_URL="https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v$VERSION/$TARBALL"
    1.22 +
    1.23 +BUILD_DEPENDS="util-linux-uuid-dev libcomerr-dev acl-dev"
    1.24 +SPLIT="reiserfsprogs-dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	cd $src
    1.30 -	./configure --prefix=/usr --sbindir=/sbin \
    1.31 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.32 +	# http://www.linuxfromscratch.org/blfs/view/stable/postlfs/reiserfs.html
    1.33 +
    1.34 +	./configure \
    1.35 +		--sbindir=/sbin \
    1.36 +		$CONFIGURE_ARGS &&
    1.37  	make &&
    1.38 -	make DESTDIR=$DESTDIR install
    1.39 +	make install
    1.40  }
    1.41  
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45 -	mkdir -p $fs
    1.46 -	cp -a $install/sbin $fs/
    1.47 +	case $PACKAGE in
    1.48 +		reiserfsprogs)
    1.49 +			copy @std
    1.50 +			DEPENDS="libcomerr util-linux-uuid   linux-reiserfs"
    1.51 +			TAGS="filesystem reiserfs"
    1.52 +			;;
    1.53 +		*-dev)
    1.54 +			copy @dev
    1.55 +			DEPENDS="reiserfsprogs libcomerr util-linux-uuid-dev"
    1.56 +			;;
    1.57 +	esac
    1.58  }
    1.59 -