wok annotate libsieve/receipt @ rev 23375

updated perl-net-ip (1.25 -> 1.26)
author Hans-G?nter Theisgen
date Tue Mar 31 13:57:30 2020 +0100 (2020-03-31)
parents e4096688d955
children 34e801e0eb52
rev   line source
pascal@18458 1 # SliTaz package receipt.
pascal@18458 2
pascal@18458 3 PACKAGE="libsieve"
pascal@18458 4 VERSION="2.3.1"
pascal@18458 5 CATEGORY="network"
pascal@18458 6 SHORT_DESC="A library for parsing, sorting and filtering your mail."
pascal@18458 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18458 8 LICENSE="LGPL2.1"
pascal@18458 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21203 10 WEB_SITE="https://github.com/sodabrew/libsieve"
pascal@18458 11 WGET_URL="https://github.com/downloads/sodabrew/$PACKAGE/$TARBALL"
pascal@18458 12
pascal@18458 13 BUILD_DEPENDS="wget"
pascal@18458 14
pascal@18458 15 # Rules to configure and make the package.
pascal@18458 16 compile_rules()
pascal@18458 17 {
pascal@18458 18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@18458 19 make &&
pascal@18458 20 make DESTDIR=$DESTDIR install
pascal@18458 21 }
pascal@18458 22
pascal@18458 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18458 24 genpkg_rules()
pascal@18458 25 {
pascal@18458 26 mkdir -p $fs/usr/lib
pascal@18458 27 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@18458 28 }