wok view libparserutils/receipt @ rev 15416

Up: thunderbird-langpack-en_US (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:37 2013 +0100 (2013-11-03)
parents 96db5f7822ae
children 8d6f480bf664
line source
1 # SliTaz package receipt.
3 PACKAGE="libparserutils"
4 VERSION="7369"
5 CATEGORY="system-tools"
6 SHORT_DESC="Various pieces of functionality that are useful for parsers."
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://www.netsurf-browser.org/projects/libparserutils/"
9 WGET_URL="subversion|svn://svn.netsurf-browser.org/trunk/libparserutils"
10 BRANCH="$VERSION"
12 BUILD_DEPENDS="subversion"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 export CFLAGS="-Wno-error=unused-but-set-variable"
19 make install DESTDIR=$DESTDIR PREFIX=/usr &&
20 make install COMPONENT_TYPE=lib-shared DESTDIR=$DESTDIR PREFIX=/usr
21 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }