wok annotate libmowgli/receipt @ rev 15473

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 20:47:29 2013 +0000 (2013-11-09)
parents a529ee09935a
children f770bc93de18
rev   line source
mimas@2029 1 # SliTaz package receipt.
mimas@2029 2
mimas@2029 3 PACKAGE="libmowgli"
slaxemulator@10243 4 VERSION="0.9.50"
pascal@2054 5 CATEGORY="system-tools"
mimas@2029 6 SHORT_DESC="High performance and highly flexible algorithms."
mimas@2029 7 MAINTAINER="mimas@slitaz.org"
pascal@15473 8 LICENSE="BSD"
slaxemulator@10243 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mimas@2029 10 WEB_SITE="http://www.atheme.org/projects/mowgli.shtml"
mimas@2029 11 WGET_URL="http://distfiles.atheme.org/$TARBALL"
mimas@2029 12
mimas@2029 13 # Rules to configure and make the package.
mimas@2029 14 compile_rules()
mimas@2029 15 {
mimas@2029 16 cd $src
slaxemulator@10243 17 sed -i "s/touch -t 0001010000 /touch /g" configure
mimas@2029 18 ./configure \
pascal@2054 19 $CONFIGURE_ARGS &&
slaxemulator@10243 20 make && make install
mimas@2029 21 }
mimas@2029 22
mimas@2029 23 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2029 24 genpkg_rules()
mimas@2029 25 {
mimas@2029 26 mkdir -p $fs/usr/lib
pascal@15473 27 cp -a $install/usr/lib/libmowgli.so* $fs/usr/lib
mimas@2029 28 }
mimas@2029 29