wok annotate figlet/receipt @ rev 22179

linld: spare up to 30k more for zImage (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 13:26:32 2019 +0100 (2019-11-09)
parents
children bfabe25c21ff
rev   line source
pascal@19987 1 # SliTaz package receipt.
pascal@19987 2
pascal@19987 3 PACKAGE="figlet"
pascal@19987 4 VERSION="2.2.5"
pascal@19987 5 CATEGORY="misc"
pascal@19987 6 SHORT_DESC="A program for making large letters out of ordinary text."
pascal@19987 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@19987 8 LICENSE="BSD"
pascal@19987 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@19987 10 WEB_SITE="http://www.figlet.org/"
pascal@19987 11 WGET_URL="ftp://ftp.figlet.org/pub/figlet/program/unix/$TARBALL"
pascal@19987 12
pascal@19987 13 # Rules to configure and make the package.
pascal@19987 14 compile_rules()
pascal@19987 15 {
pascal@19987 16 sed -i 's|/local||' Makefile
pascal@19987 17 make &&
pascal@19987 18 make DESTDIR=$DESTDIR install
pascal@19987 19 }
pascal@19987 20
pascal@19987 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@19987 22 genpkg_rules()
pascal@19987 23 {
pascal@19987 24 mkdir -p $fs/usr
pascal@19987 25 cp -a $install/usr/bin $fs/usr
pascal@19987 26 cp -a $install/usr/share $fs/usr
pascal@19987 27 }