wok view libparserutils/receipt @ rev 15806

Up: sudoku to 2.3. Fixed WEB_SITE and WGET_URL so we get the app and not a error page.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 01:35:01 2014 +0000 (2014-01-24)
parents 8d6f480bf664
children b269c5c2be2d
line source
1 # SliTaz package receipt.
3 PACKAGE="libparserutils"
4 VERSION="0.1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Various pieces of functionality that are useful for parsers."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.netsurf-browser.org/projects/libparserutils/"
10 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
11 WGET_URL="http://download.netsurf-browser.org/libs/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make install DESTDIR=$DESTDIR PREFIX=/usr &&
18 make install COMPONENT_TYPE=lib-shared DESTDIR=$DESTDIR PREFIX=/usr
19 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $install/usr/lib/*.so* $fs/usr/lib
25 }