wok view mxml/receipt @ rev 22441

vlc: lots of warnings/missing -> add 29 deps at end, unsorted for now
author Erkan Yilmaz <erkan@slitaz.org>
date Mon Dec 23 15:00:20 2019 +0000 (2019-12-23)
parents
children e0b334d648d0
line source
1 # SliTaz package receipt.
3 PACKAGE="mxml"
4 VERSION="2.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="Minimal XML - Dom oriented library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 LICENSE="LGPL2"
10 WEB_SITE="http://www.minixml.org/"
11 WGET_URL="http://www.msweet.org/files/project3/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $src/libmxml.so* $fs/usr/lib
30 }