wok-next view reiser4progs/receipt @ rev 19766

Up cookutils.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jun 12 11:40:38 2017 +0300 (2017-06-12)
parents 765ba71df4e0
children 0e8dadf052b9
line source
1 # SliTaz package receipt v2.
3 PACKAGE="reiser4progs"
4 VERSION="1.0.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for manipulating reiser4 file-system."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.kernel.org/"
11 WGET_URL="http://piotrkosoft.net/pub/unix/linux/utils/fs/reiser4/$PACKAGE/$TARBALL"
12 TAGS="filesystem reiserfs"
14 BUILD_DEPENDS="libaal libaal-dev util-linux-uuid-dev ncurses-dev readline-dev"
15 SPLIT="reiser4progs-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make $MAKEFLAGS &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 case $PACKAGE in
30 reiser4progs)
31 copy @std
32 DEPENDS="libaal util-linux-uuid ncurses readline"
33 ;;
34 reiser4progs-dev)
35 copy @dev
36 DEPENDS="libaal-dev"
37 ;;
38 esac
39 }