wok view xorg-fonttosfnt/receipt @ rev 22421

I see these >10 packages also got version updates due to xfce 4.12.0
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Dec 15 09:13:38 2019 +0000 (2019-12-15)
parents eb8067417980
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-fonttosfnt"
4 VERSION="1.0.5"
5 CATEGORY="x-window"
6 TAGS="utility xorg fonts"
7 SHORT_DESC="Wrap a bitmap font in a sfnt (TrueType) wrapper."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://xorg.freedesktop.org/"
12 SOURCE="fonttosfnt"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
16 DEPENDS="freetype xorg-libfontenc xorg-libX11"
18 # Rules to configure and make the package.ls sr
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }