wok annotate libwapcaplet/receipt @ rev 15651

Up libwapcaplet (0.1.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 10 16:21:26 2013 +0000 (2013-12-10)
parents 8d6f480bf664
children e1200b521d82
rev   line source
erjo@5931 1 # SliTaz package receipt.
erjo@5931 2
erjo@5931 3 PACKAGE="libwapcaplet"
pascal@15651 4 VERSION="0.1.1"
erjo@5931 5 CATEGORY="system-tools"
erjo@5931 6 SHORT_DESC="String internment library"
erjo@5931 7 MAINTAINER="erjo@slitaz.org"
pascal@15482 8 LICENSE="MIT"
erjo@5931 9 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
pascal@15651 10 WEB_SITE="http://www.netsurf-browser.org/projects/libwapcaplet/"
pascal@15651 11 WGET_URL="http://download.netsurf-browser.org/libs/releases/$TARBALL"
erjo@5931 12
pascal@15482 13 DEPENDS=""
erjo@5931 14
erjo@5931 15 # Rules to configure and make the package.
erjo@5931 16 compile_rules()
erjo@5931 17 {
erjo@5931 18 cd $src
erjo@5931 19 COMPONENT_TYPE=lib-shared make \
pascal@15482 20 && PREFIX=/usr make DESTDIR=$DESTDIR install
erjo@5931 21 }
erjo@5931 22
erjo@5931 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@5931 24 genpkg_rules()
erjo@5931 25 {
erjo@5931 26 mkdir -p $fs/usr/lib
erjo@5931 27 cp -a $src/*-lib-shared/*.so* $fs/usr/lib
erjo@5931 28 }
erjo@5931 29