wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="liblinebreak"
4 VERSION="2.0"
5 CATEGORY="development"
6 SHORT_DESC="Line breaking library"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/"
10 WGET_URL="http://downloads.sourceforge.net/project/vimgadgets/$PACKAGE/$VERSION/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr $CONFIGURE_ARGS &&
17 make &&
18 make DESTDIR=$PWD/_pkg install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
26 }