wok-next annotate liblinebreak/receipt @ rev 17119
Up lilo (24.0), again
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Sep 04 13:22:11 2014 +0200 (2014-09-04) |
parents | 35c9f45749e6 |
children | 7042ae74166a |
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" |
pascal@15473 | 8 LICENSE="zlib/libpng" |
devl547@5223 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
devl547@5223 | 10 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/" |
devl547@5223 | 11 WGET_URL="http://downloads.sourceforge.net/project/vimgadgets/$PACKAGE/$VERSION/$TARBALL" |
devl547@5223 | 12 |
devl547@5223 | 13 # Rules to configure and make the package. |
devl547@5223 | 14 compile_rules() |
devl547@5223 | 15 { |
devl547@5223 | 16 cd $src |
devl547@5223 | 17 ./configure --prefix=/usr $CONFIGURE_ARGS && |
devl547@5223 | 18 make && |
pascal@15473 | 19 make DESTDIR=$DESTDIR install |
devl547@5223 | 20 } |
devl547@5223 | 21 |
devl547@5223 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5223 | 23 genpkg_rules() |
devl547@5223 | 24 { |
devl547@5223 | 25 mkdir -p $fs/usr/lib |
pascal@15473 | 26 cp -a $install/usr/lib/*.so* $fs/usr/lib |
devl547@5223 | 27 } |
devl547@5223 | 28 |