wok view figlet/receipt @ rev 21747

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