wok view liblinebreak/receipt @ rev 22413

clamav 0.101.1 -> 0.101.2: fixes a few CVEs; new requirement: libcurl
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Dec 14 19:36:12 2019 +0000 (2019-12-14)
parents 35c9f45749e6
children 5b5cac5612a2
line source
1 # SliTaz package receipt.
3 PACKAGE="liblinebreak"
4 VERSION="2.0"
5 CATEGORY="development"
6 SHORT_DESC="Line breaking library"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="zlib/libpng"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/"
11 WGET_URL="http://downloads.sourceforge.net/project/vimgadgets/$PACKAGE/$VERSION/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }