wok annotate liblinebreak/receipt @ rev 24347

Up expat (2.4.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 02 09:41:22 2022 +0000 (2022-02-02)
parents 8f447cf2eee5
children 370da83187ab
rev   line source
devl547@5223 1 # SliTaz package receipt.
devl547@5223 2
devl547@5223 3 PACKAGE="liblinebreak"
Hans-G?nter@23079 4 VERSION="2.1"
devl547@5223 5 CATEGORY="development"
Hans-G?nter@23079 6 SHORT_DESC="Line breaking library."
devl547@5223 7 MAINTAINER="devl547@gmail.com"
pascal@15473 8 LICENSE="zlib/libpng"
Hans-G?nter@23079 9 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/"
Hans-G?nter@23079 10
devl547@5223 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@5223 12 WGET_URL="http://downloads.sourceforge.net/project/vimgadgets/$PACKAGE/$VERSION/$TARBALL"
devl547@5223 13
devl547@5223 14 # Rules to configure and make the package.
devl547@5223 15 compile_rules()
devl547@5223 16 {
Hans-G?nter@23079 17 ./configure \
Hans-G?nter@23079 18 --prefix=/usr \
Hans-G?nter@23079 19 $CONFIGURE_ARGS &&
devl547@5223 20 make &&
pascal@15473 21 make DESTDIR=$DESTDIR install
devl547@5223 22 }
devl547@5223 23
devl547@5223 24 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5223 25 genpkg_rules()
devl547@5223 26 {
devl547@5223 27 mkdir -p $fs/usr/lib
Hans-G?nter@23079 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
devl547@5223 29 }
devl547@5223 30