wok-next view 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
line source
1 # SliTaz package receipt v2.
3 PACKAGE="reiserfsprogs"
4 VERSION="3.6.27"
5 CATEGORY="system-tools"
6 SHORT_DESC="ReiserFS tools"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.sfr-fresh.com/linux/misc/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v$VERSION/$TARBALL"
14 BUILD_DEPENDS="util-linux-uuid-dev libcomerr-dev acl-dev"
15 SPLIT="reiserfsprogs-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # http://www.linuxfromscratch.org/blfs/view/stable/postlfs/reiserfs.html
22 ./configure \
23 --sbindir=/sbin \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 case $PACKAGE in
33 reiserfsprogs)
34 copy @std
35 DEPENDS="libcomerr util-linux-uuid linux-reiserfs"
36 TAGS="filesystem reiserfs"
37 ;;
38 *-dev)
39 copy @dev
40 DEPENDS="reiserfsprogs libcomerr util-linux-uuid-dev"
41 ;;
42 esac
43 }