wok view sylfilter/receipt @ rev 22649

updated djview (4.10.3 -> 4.10.6)
author Hans-G?nter Theisgen
date Tue Jan 14 13:39:45 2020 +0100 (2020-01-14)
parents cefa4ef5052f
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="sylfilter"
4 VERSION="0.8"
5 CATEGORY="network"
6 SHORT_DESC="SylFilter is a light message filter library and command-line tools."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://sylpheed.sraoss.jp/sylfilter/"
11 WGET_URL="http://sylpheed.sraoss.jp/sylfilter/src/$TARBALL"
12 TAGS="mail email filter spam"
14 DEPENDS="sqlite"
15 BUILD_DEPENDS="sqlite-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's|config.rpath.*|& 2>/dev/null|' configure # hide trigger
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }