wok view a2ps/receipt @ rev 21194

systemd: corrected build dependencies
author Hans-G?nter Theisgen
date Fri Apr 05 17:53:25 2019 +0100 (2019-04-05)
parents 45507bfb2b0d
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="a2ps"
4 VERSION="4.14"
5 CATEGORY="office"
6 SHORT_DESC="Any to PostScript filter."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/a2ps/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="ps print convert"
14 BUILD_DEPENDS="gperf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # Be busybox sort compatible
20 sed -i 's/+0 -1/-k 1,2/' afm/make_fonts_map.sh
21 ./configure --sysconfdir=/etc $CONFIGURE_ARGS &&
22 make 2>&1 | grep -v fonts.map.new &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs
30 rm -rf $fs/usr/lib $fs/usr/include $fs/usr/share/man $fs/usr/share/info
31 sed -i 's/^FileCommand/#FileCommand/' $fs/etc/a2ps.cfg
32 }