wok annotate libsieve/receipt @ rev 18458

Add libsieve
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 28 22:42:42 2015 +0200 (2015-09-28)
parents
children adbdcada3730
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@18458 10 WEB_SITE="http://libsieve.sourceforge.net/"
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 }