wok view libmowgli/receipt @ rev 20674

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 18:16:34 2019 +0100 (2019-01-24)
parents 462a3072fa74
children 5947772a3cfc
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://atheme.org/projects/libmowgli.html"
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 }