wok annotate sylpheed/receipt @ rev 25164

updated python-antlr (3.5.2 -> 3.5.3)
author Hans-G?nter Theisgen
date Fri Jul 01 10:50:21 2022 +0100 (23 months ago)
parents fcb1de9af8f7
children
rev   line source
pankso@40 1 # SliTaz package receipt.
pankso@40 2
pankso@40 3 PACKAGE="sylpheed"
Hans-G?nter@21994 4 VERSION="3.7.0"
pankso@203 5 CATEGORY="network"
Hans-G?nter@21994 6 TAGS="mail internet"
pankso@40 7 SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client"
pankso@10432 8 MAINTAINER="pankso@slitaz.org"
pascal@15002 9 LICENSE="GPL2"
Hans-G?nter@21994 10 WEB_SITE="https://sylpheed.sraoss.jp/en/"
Hans-G?nter@21994 11
pankso@40 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@21998 13 WGET_URL="https://dotsrc.dl.osdn.net/osdn/sylpheed/68999/$TARBALL"
pankso@40 14
Hans-G?nter@21994 15 DEPENDS="gtk+ libffi libssl"
pankso@10432 16 BUILD_DEPENDS="gtk+-dev openssl-dev"
pankso@10432 17
pascal@24462 18 # What is the latest version available today?
pascal@24462 19 current_version()
pascal@24462 20 {
pascal@24462 21 wget -O - https://sylpheed.sraoss.jp/en/download.html 2>/dev/null | \
pascal@24462 22 sed '/sylpheed-[0-9]/!d;/tar..z/!d;s|.*ylpheed-||;s|.tar.*||;q'
pascal@24462 23 }
pascal@24462 24
pankso@40 25 # Rules to configure and make the package.
pankso@40 26 compile_rules()
pankso@40 27 {
Hans-G?nter@21994 28 ./configure \
Hans-G?nter@21994 29 --disable-gtkspell \
Hans-G?nter@21994 30 --disable-updatecheck \
pascal@1460 31 $CONFIGURE_ARGS &&
Hans-G?nter@21994 32 make &&
Hans-G?nter@21994 33 make install
pankso@40 34 }
pankso@40 35
pankso@40 36 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@40 37 genpkg_rules()
pankso@40 38 {
Hans-G?nter@21994 39 mkdir -p $fs/usr/lib
Hans-G?nter@21994 40 mkdir -p $fs/usr/share/applications
Hans-G?nter@21994 41
Hans-G?nter@21994 42 cp -a $stuff/applications/sylpheed*.desktop $fs/usr/share/applications
Hans-G?nter@21994 43 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21994 44 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@40 45 }