wok view reiser4progs/receipt @ rev 22340

Add perl-netaddr-ip & spamassassin
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 15 23:13:17 2019 +0100 (2019-11-15)
parents 86790a278e70
children 9c126591c6c4
line source
1 # SliTaz package receipt.
3 PACKAGE="reiser4progs"
4 VERSION="1.2.1"
5 CATEGORY="system-tools"
6 TAGS="filesystem reiserfs"
7 SHORT_DESC="Utilities for manipulating reiser4 file-system."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.kernel.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/reiser4/$TARBALL"
15 DEPENDS="libaal ncurses readline util-linux-uuid"
16 BUILD_DEPENDS="libaal libaal-dev ncurses-dev readline-dev util-linux-uuid-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export LDFLAGS="$LDFLAGS -ltinfo"
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make $MAKEFLAGS &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/sbin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }