wok annotate reiser4progs/receipt @ rev 22184

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