wok view harfbuzz/receipt @ rev 17769

compiz-libcompizconfig: cmake 3.1 seems need CMAKE_MINIMUM_REQUIRED_VERSION
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 13 17:47:05 2015 +0100 (2015-03-13)
parents 84de37378086
children 99ad99a3ac5e
line source
1 # SliTaz package receipt.
3 PACKAGE="harfbuzz"
4 VERSION="0.9.38"
5 CATEGORY="system-tools"
6 SHORT_DESC="OpenType text shaping engine"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
11 WGET_URL="http://www.freedesktop.org/software/harfbuzz/release/$TARBALL"
13 DEPENDS="glib freetype"
14 BUILD_DEPENDS="glib-dev freetype-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --with-glib \
21 --with-freetype \
22 --with-gobject \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }