wok view libsieve/receipt @ rev 22711

exempi: add bin/exempi
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jan 22 11:18:51 2020 +0100 (2020-01-22)
parents e4096688d955
children 34e801e0eb52
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="https://github.com/sodabrew/libsieve"
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 }