wok rev 21

Add : fontconfig and freetype
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 13:43:14 2007 +0100 (2007-12-18)
parents dc2dd4d7fffb
children ad5e33e4dad7
files fontconfig-dev/receipt fontconfig/receipt freetype-dev/receipt freetype/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/fontconfig-dev/receipt	Tue Dec 18 13:43:14 2007 +0100
     1.3 @@ -0,0 +1,18 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="fontconfig-dev"
     1.7 +VERSION="2.4.2"
     1.8 +CATEGORY="devel"
     1.9 +SHORT_DESC="Font configuration utilities and library devel files."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +WEB_SITE="http://www.fontconfig.org/wiki/"
    1.12 +WANTED="fontconfig"
    1.13 +
    1.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.15 +genpkg_rules()
    1.16 +{
    1.17 +    mkdir -p $fs/usr/lib
    1.18 +    cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    1.19 +    cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.20 +    cp -a $_pkg/usr/include $fs/usr
    1.21 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/fontconfig/receipt	Tue Dec 18 13:43:14 2007 +0100
     2.3 @@ -0,0 +1,34 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="fontconfig"
     2.7 +VERSION="2.4.2"
     2.8 +CATEGORY="x-window"
     2.9 +SHORT_DESC="Font configuration utilities and library."
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.12 +WEB_SITE="http://www.fontconfig.org/wiki/"
    2.13 +WGET_URL="http://fontconfig.org/release/$TARBALL"
    2.14 +
    2.15 +# Rules to configure and make the package.
    2.16 +compile_rules()
    2.17 +{
    2.18 +    cd $src
    2.19 +    ./configure --sysconfdir=/etc --prefix=/usr \
    2.20 +    --mandir=/usr/share/man --localstatedir=/var \
    2.21 +    $CONFIGURE_ARGS
    2.22 +    make
    2.23 +    make DESTDIR=$PWD/_pkg install
    2.24 +}
    2.25 +
    2.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.27 +genpkg_rules()
    2.28 +{
    2.29 +	mkdir -p $fs/usr/lib
    2.30 +    cp -a $_pkg/usr/bin $fs/usr
    2.31 +    cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    2.32 +    cp -a $_pkg/etc $fs
    2.33 +    cp -a $_pkg/var $fs
    2.34 +    # Strip cmds.
    2.35 +    strip -s $fs/usr/bin/*
    2.36 +    strip -s $fs/usr/lib/*
    2.37 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/freetype-dev/receipt	Tue Dec 18 13:43:14 2007 +0100
     3.3 @@ -0,0 +1,18 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="freetype-dev"
     3.7 +VERSION="2.3.5"
     3.8 +CATEGORY="devel"
     3.9 +SHORT_DESC="Freetype font engine devel files."
    3.10 +MAINTAINER="pankso@slitaz.org"
    3.11 +WANTED="freetype"
    3.12 +
    3.13 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.14 +genpkg_rules()
    3.15 +{
    3.16 +	mkdir -p $fs/usr/lib
    3.17 +    cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    3.18 +    cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    3.19 +    cp -a $_pkg/usr/include $fs/usr
    3.20 +    cp -a $_pkg/usr/share $fs/usr
    3.21 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/freetype/receipt	Tue Dec 18 13:43:14 2007 +0100
     4.3 @@ -0,0 +1,29 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="freetype"
     4.7 +VERSION="2.3.5"
     4.8 +CATEGORY="x-window"
     4.9 +SHORT_DESC="Freetype font engine."
    4.10 +MAINTAINER="pankso@slitaz.org"
    4.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    4.12 +WEB_SITE="http://www.freetype.org/"
    4.13 +WGET_URL="http://download.savannah.gnu.org/releases/freetype/$TARBALL"
    4.14 +
    4.15 +# Rules to configure and make the package.
    4.16 +compile_rules()
    4.17 +{
    4.18 +    cd $src
    4.19 +    ./configure --sysconfdir=/etc --prefix=/usr \
    4.20 +    --mandir=/usr/share/man $CONFIGURE_ARGS
    4.21 +    make
    4.22 +    make DESTDIR=$PWD/_pkg install
    4.23 +}
    4.24 +
    4.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.26 +genpkg_rules()
    4.27 +{
    4.28 +	mkdir -p $fs/usr/lib
    4.29 +    cp -a $_pkg/usr/bin $fs/usr
    4.30 +    cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    4.31 +    strip -s $fs/usr/lib/*.so*
    4.32 +}