wok view xorg-fonttosfnt/receipt @ rev 23621

updated ruby and ruby-dev (2.6.4 -> 2.7.1)
author Hans-G?nter Theisgen
date Tue Apr 14 15:51:31 2020 +0100 (2020-04-14)
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 }