wok annotate libmatchbox/receipt @ rev 24309
created recipes for anthy, anthy-dev, scim-anthy and scim-anthy-lang
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jan 19 08:06:16 2022 +0100 (2022-01-19) |
parents | 116dfad8829f |
children | ede1d184d5c5 |
rev | line source |
---|---|
pankso@10837 | 1 # SliTaz package receipt. |
pankso@10837 | 2 |
pankso@10837 | 3 PACKAGE="libmatchbox" |
Hans-G?nter@23084 | 4 VERSION="1.12" |
pankso@10837 | 5 CATEGORY="x-window" |
pankso@10837 | 6 SHORT_DESC="Matchbox shared library." |
pankso@10837 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15080 | 8 LICENSE="LGPL2.1" |
Hans-G?nter@23084 | 9 WEB_SITE="https://www.yoctoproject.org/software-item/matchbox/" |
Hans-G?nter@23084 | 10 |
pankso@10837 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
Hans-G?nter@23084 | 12 WGET_URL="http://git.yoctoproject.org/cgit/cgit.cgi/$PACKAGE/snapshot/$TARBALL" |
pankso@10837 | 13 |
pankso@10837 | 14 DEPENDS="pango" |
Hans-G?nter@23084 | 15 BUILD_DEPENDS="autoconf automake jpeg-dev libtool libxml2-dev pango-dev" |
pankso@10837 | 16 |
pankso@10837 | 17 # Rules to configure and make the package. |
pankso@10837 | 18 compile_rules() |
pankso@10837 | 19 { |
pascal@17670 | 20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11" |
pankso@10837 | 21 #--enable-xsettings |
Hans-G?nter@23084 | 22 |
Hans-G?nter@23085 | 23 ./autogen.sh && |
Hans-G?nter@23084 | 24 ./configure \ |
Hans-G?nter@23084 | 25 --enable-pango \ |
Hans-G?nter@23084 | 26 --enable-jpeg \ |
pankso@10837 | 27 $CONFIGURE_ARGS && |
Hans-G?nter@23084 | 28 make && |
Hans-G?nter@23084 | 29 make install |
pankso@10837 | 30 } |
pankso@10837 | 31 |
pankso@10837 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@10837 | 33 genpkg_rules() |
pankso@10837 | 34 { |
pankso@10837 | 35 mkdir -p $fs/usr/lib |
Hans-G?nter@23084 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@10837 | 37 } |