wok view libmowgli/receipt @ rev 20417

Add perl-html-template & perl-log-log4perl
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 04 13:11:27 2018 +0200 (2018-08-04)
parents f770bc93de18
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="libmowgli"
4 VERSION="2.0.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="High performance and highly flexible algorithms."
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.atheme.org/projects/mowgli"
11 WGET_URL="https://github.com/atheme/libmowgli-2/archive/$TARBALL"
13 BUILD_DEPENDS="wget"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 sed -i "s/touch -t 0001010000 /touch /g" configure
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/libmowgli*.so* $fs/usr/lib
30 }