wok view freetype/receipt @ rev 23801

created recipes for xcb-util-cursor and xcb-util-cursor-dev
author Hans-G?nter Theisgen
date Sun May 24 07:21:45 2020 +0100 (2020-05-24)
parents 508f66468375
children 376c63dc731b
line source
1 # SliTaz package receipt.
3 PACKAGE="freetype"
4 VERSION="2.10.1"
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/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="harfbuzz libpng zlib"
15 BUILD_DEPENDS="autoconf automake bzip2-dev harfbuzz-dev libpng-dev libtool"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 # patch -p1 -i $stuff/freetype-2.6.4.patch
24 ./autogen.sh &&
25 ./configure \
26 --sysconfdir=/etc \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 mkdir -p $DESTDIR/usr/bin
31 cp builds/unix/freetype-config $DESTDIR/usr/bin
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 cook_copy_files *.so*
38 }