wok view liblinebreak/receipt @ rev 23859

updated firefox-official (76.0 -> 77.0)
author Hans-G?nter Theisgen
date Wed Jun 17 15:35:48 2020 +0100 (2020-06-17)
parents 8f447cf2eee5
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="liblinebreak"
4 VERSION="2.1"
5 CATEGORY="development"
6 SHORT_DESC="Line breaking library."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="zlib/libpng"
9 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://downloads.sourceforge.net/project/vimgadgets/$PACKAGE/$VERSION/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }