wok view libmatchbox/receipt @ rev 23084

updated libmatchbox and libmatchbox-dev (1.9 -> 1.12)
author Hans-G?nter Theisgen
date Wed Mar 11 07:36:25 2020 +0100 (2020-03-11)
parents d3eb5f4b53ea
children 288d42424f1e
line source
1 # SliTaz package receipt.
3 PACKAGE="libmatchbox"
4 VERSION="1.12"
5 CATEGORY="x-window"
6 SHORT_DESC="Matchbox shared library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://www.yoctoproject.org/software-item/matchbox/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://git.yoctoproject.org/cgit/cgit.cgi/$PACKAGE/snapshot/$TARBALL"
14 DEPENDS="pango"
15 BUILD_DEPENDS="autoconf automake jpeg-dev libtool libxml2-dev pango-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11"
21 #--enable-xsettings
23 ./configure \
24 --enable-pango \
25 --enable-jpeg \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }