wok-current view freetype/receipt @ rev 19306
Up: harfbuzz(1.2.7), truetype(2.6.4)
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Sun Jul 10 20:40:05 2016 +0300 (2016-07-10) | 
| parents | 86698e8d683a | 
| children | f4028fc98216 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="freetype"
     4 VERSION="2.6.4"
     5 CATEGORY="x-window"
     6 SHORT_DESC="A free, high-quality, and portable font engine"
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="FTL GPL2"
     9 WEB_SITE="https://www.freetype.org/"
    10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    12 HOST_ARCH="i486 arm"
    14 DEPENDS="zlib libpng harfbuzz"
    15 BUILD_DEPENDS="automake libtool autoconf bzip2-dev libpng-dev harfbuzz-dev"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20 	patch -p1 -i $stuff/freetype-2.6.4.patch
    22 	./autogen.sh &&
    23 	./configure \
    24 		--sysconfdir=/etc \
    25 		$CONFIGURE_ARGS &&
    26 	make &&
    27 	make install
    28 }
    30 # Rules to gen a SliTaz package suitable for Tazpkg.
    31 genpkg_rules()
    32 {
    33 	cook_copy_files *.so
    34 }