wok view libsieve/receipt @ rev 20794

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 15 11:29:31 2019 +0100 (2019-02-15)
parents
children adbdcada3730
line source
1 # SliTaz package receipt.
3 PACKAGE="libsieve"
4 VERSION="2.3.1"
5 CATEGORY="network"
6 SHORT_DESC="A library for parsing, sorting and filtering your mail."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://libsieve.sourceforge.net/"
11 WGET_URL="https://github.com/downloads/sodabrew/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="wget"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }