wok annotate libdaemon/receipt @ rev 23069

scilab: update for hdf5
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 10 08:35:31 2020 +0100 (2020-03-10)
parents
children 453c249b6219
rev   line source
pascal@20795 1 # SliTaz package receipt.
pascal@20795 2
pascal@20795 3 PACKAGE="libdaemon"
pascal@20795 4 VERSION="0.14"
pascal@20795 5 CATEGORY="system-tools"
pascal@20795 6 SHORT_DESC="A lightweight C library that eases the writing of UNIX daemons"
pascal@20795 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20795 8 LICENSE="LGPL2.1"
pascal@20795 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20795 10 WEB_SITE="http://0pointer.de/lennart/projects/libdaemon/"
pascal@20795 11 WGET_URL="${WEB_SITE}$TARBALL"
pascal@20795 12
pascal@20795 13 # Rules to configure and make the package.
pascal@20795 14 compile_rules()
pascal@20795 15 {
pascal@20795 16 ./configure --prefix=/usr \
pascal@20795 17 $CONFIGURE_ARGS &&
pascal@20795 18 make &&
pascal@20795 19 make DESTDIR=$DESTDIR install
pascal@20795 20 }
pascal@20795 21
pascal@20795 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20795 23 genpkg_rules()
pascal@20795 24 {
pascal@20795 25 mkdir -p $fs/usr/lib
pascal@20795 26 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@20795 27 }