wok annotate liblinebreak/receipt @ rev 14909

slitaz-i18n: add slitaz-configs as bdep; slitaz-configs: back openbox menu; locale-el, locale-ru: add keyboard layout icons; locale-fr, locale-hu, locale-pt_BR: recook with openbox menu.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Aug 05 11:40:01 2013 +0300 (2013-08-05)
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