wok-next view reiser4progs/receipt @ rev 19743

Remake/fix: alsa-lib, alsaplayer; update base (LFS) packages: bash, binutils, bison, bzip2, diffutils, file, findutils, gawk, gcc, gettext, glibc, gmp, m4, mpc-library, mpfr, ncurses, patch, xz; update: tazpkg, cookutils, svgcleaner.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jun 06 17:37:54 2017 +0300 (2017-06-06)
parents 23b382a886ad
children e3681453b45c
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 export LDFLAGS="$LDFLAGS -ltinfo"
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make $MAKEFLAGS &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 reiser4progs)
32 copy @std
33 DEPENDS="libaal util-linux-uuid ncurses readline"
34 ;;
35 reiser4progs-dev)
36 copy @dev
37 DEPENDS="libaal-dev"
38 ;;
39 esac
40 }