wok view reiserfsprogs/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 12b83f92833e
children 89c8d8b6cf48
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://fossies.org/linux/misc/"
11 WGET_URL="http://cdn.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v$VERSION/$TARBALL"
12 TAGS="filesystem reiserfs"
14 DEPENDS="linux-reiserfs util-linux-uuid libcomerr"
15 BUILD_DEPENDS="libcomerr-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's|<com_err.h>|<et/com_err.h>|' */*.?
21 ./configure --prefix=/usr --sbindir=/sbin \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs
31 cp -a $install/sbin $fs/
32 }