wok annotate xorg-fonttosfnt/receipt @ rev 21314

5) lxpanel: up (0.10.0)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 18 17:46:06 2019 +0300 (2019-04-18)
parents 0ccb3190e4f3
children 55468e317029
rev   line source
pascal@11203 1 # SliTaz package receipt.
pascal@11203 2
pascal@11203 3 PACKAGE="xorg-fonttosfnt"
pascal@11203 4 VERSION="1.0.4"
pascal@11203 5 CATEGORY="x-window"
pascal@11203 6 SHORT_DESC="Wrap a bitmap font in a sfnt (TrueType) wrapper."
pascal@11203 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="MIT"
pascal@11203 9 SOURCE="fonttosfnt"
pascal@11203 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@11203 11 WEB_SITE="http://xorg.freedesktop.org/"
pascal@11203 12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
pascal@11203 13 TAGS="utility xorg fonts"
gokhlayeh@11470 14 DEPENDS="xorg-libX11 freetype xorg-libfontenc"
pascal@11203 15
pascal@11203 16 # Rules to configure and make the package.ls sr
pascal@11203 17 compile_rules()
pascal@11203 18 {
pascal@11203 19 cd $src
pascal@11203 20 ./configure \
pascal@11203 21 --prefix=/usr \
pascal@11203 22 --mandir=/usr/share/man \
pascal@11203 23 $CONFIGURE_ARGS &&
pascal@11203 24 make &&
pascal@11203 25 make DESTDIR=$DESTDIR install
pascal@11203 26 }
pascal@11203 27
pascal@11203 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11203 29 genpkg_rules()
pascal@11203 30 {
pascal@11203 31 mkdir -p $fs/usr
pascal@15579 32 cp -a $install/usr/bin $fs/usr
pascal@11203 33 }
pascal@11203 34