wok annotate cmatrix/receipt @ rev 22251

updated xorg-xcompmgr (1.1.6 -> 1.1.8)
author Hans-G?nter Theisgen
date Tue Nov 12 16:53:09 2019 +0100 (2019-11-12)
parents 17e313b5b9c1
children a89966b4677d
rev   line source
paul@5285 1 # SliTaz package receipt.
paul@5285 2
paul@5285 3 PACKAGE="cmatrix"
paul@5285 4 VERSION="1.2a"
paul@5285 5 CATEGORY="misc"
paul@5285 6 SHORT_DESC="Matrix screensaver."
paul@5285 7 MAINTAINER="paul@slitaz.org"
pascal@15579 8 LICENSE="GPL2"
paul@5285 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21954 10 WEB_SITE="https://www.asty.org/cmatrix/"
pascal@21954 11 WGET_URL="https://www.asty.org/cmatrix/dist/$TARBALL"
paul@5285 12
pascal@15579 13 DEPENDS="ncurses"
pascal@15579 14 BUILD_DEPENDS="ncurses-dev"
pascal@15579 15
paul@5285 16 # Rules to configure and make the package.
paul@5285 17 compile_rules()
paul@5285 18 {
pascal@17670 19 export LDFLAGS="$LDFLAGS -ltinfo"
paul@5285 20 ./configure \
paul@5285 21 --prefix=/usr \
paul@5285 22 --infodir=/usr/share/info \
paul@5285 23 --mandir=/usr/share/man \
paul@5285 24 $CONFIGURE_ARGS &&
pascal@15579 25 make && make DESTDIR=$DESTDIR install
paul@5285 26 }
paul@5285 27
paul@5285 28 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@5285 29 genpkg_rules()
paul@5285 30 {
paul@5285 31 mkdir -p $fs/usr
pascal@15579 32 cp -a $install/usr/bin $fs/usr
paul@5285 33 }