wok annotate liblinebreak/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents 35c9f45749e6
children 5b5cac5612a2
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