wok view libspectre/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libspectre"
4 VERSION="0.2.7"
5 CATEGORY="office"
6 SHORT_DESC="libspectre is a small library for rendering Postscript documents"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.freedesktop.org/wiki/Software/libspectre"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://libspectre.freedesktop.org/releases/$TARBALL"
13 DEPENDS="ghostscript"
14 BUILD_DEPENDS="ghostscript-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }