wok-next view reiserfsprogs/receipt @ rev 21718

Up dropbear (2020.80)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 29 08:19:44 2020 +0000 (2020-07-29)
parents d5aab818505e
children
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="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://fossies.org/linux/misc/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/postlfs/reiserfs.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v$VERSION/$TARBALL"
15 BUILD_DEPENDS="util-linux-uuid-dev libcomerr-dev acl-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules(){
19 ./configure \
20 --sbindir=/sbin \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 reiserfsprogs)
30 copy @std
31 DEPENDS="libcomerr util-linux-uuid linux-reiserfs"
32 TAGS="filesystem reiserfs"
33 ;;
34 *-dev)
35 copy @dev
36 DEPENDS="reiserfsprogs libcomerr util-linux-uuid-dev"
37 ;;
38 esac
39 }