wok annotate liblinebreak/receipt @ rev 6473

Up: midori to 0.2.8.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Sep 29 21:28:08 2010 +0000 (2010-09-29)
parents
children 8f447cf2eee5
rev   line source
devl547@5223 1 # SliTaz package receipt.
devl547@5223 2
devl547@5223 3 PACKAGE="liblinebreak"
devl547@5223 4 VERSION="2.0"
devl547@5223 5 CATEGORY="development"
devl547@5223 6 SHORT_DESC="Line breaking library"
devl547@5223 7 MAINTAINER="devl547@gmail.com"
devl547@5223 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@5223 9 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/"
devl547@5223 10 WGET_URL="http://downloads.sourceforge.net/project/vimgadgets/$PACKAGE/$VERSION/$TARBALL"
devl547@5223 11
devl547@5223 12 # Rules to configure and make the package.
devl547@5223 13 compile_rules()
devl547@5223 14 {
devl547@5223 15 cd $src
devl547@5223 16 ./configure --prefix=/usr $CONFIGURE_ARGS &&
devl547@5223 17 make &&
devl547@5223 18 make DESTDIR=$PWD/_pkg install
devl547@5223 19 }
devl547@5223 20
devl547@5223 21 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5223 22 genpkg_rules()
devl547@5223 23 {
devl547@5223 24 mkdir -p $fs/usr/lib
devl547@5223 25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
devl547@5223 26 }
devl547@5223 27