wok view libmatchbox/receipt @ rev 23954

updated smplayer (20.4.2 -> 20.6.0)
author Hans-G?nter Theisgen
date Tue Sep 22 17:05:06 2020 +0100 (2020-09-22)
parents 116dfad8829f
children ede1d184d5c5
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 ./autogen.sh &&
24 ./configure \
25 --enable-pango \
26 --enable-jpeg \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }