wok-current annotate sylpheed-full/receipt @ rev 25196
updated python-httplib2 (0.17.1 -> 0.20.2)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 13 11:04:37 2022 +0100 (2022-07-13) |
parents | fcb1de9af8f7 |
children |
rev | line source |
---|---|
pankso@10439 | 1 # SliTaz package receipt. |
pankso@10439 | 2 |
pankso@10439 | 3 PACKAGE="sylpheed-full" |
Hans-G?nter@21994 | 4 VERSION="3.7.0" |
pankso@10439 | 5 CATEGORY="network" |
Hans-G?nter@21994 | 6 TAGS="mail internet" |
Hans-G?nter@21994 | 7 SHORT_DESC="Simple and full featured e-mail client (GPG, spell, ldap support)." |
pankso@10439 | 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@10439 | 12 SOURCE="sylpheed" |
pankso@10439 | 13 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@21998 | 14 WGET_URL="https://dotsrc.dl.osdn.net/osdn/sylpheed/68999/$TARBALL" |
Hans-G?nter@21994 | 15 |
pankso@10439 | 16 PROVIDE="sylpheed" |
Hans-G?nter@21994 | 17 DEPENDS="enchant gnupg gpgme gtk+ gtkspell libgpg-error libldap libssl" |
Hans-G?nter@21994 | 18 BUILD_DEPENDS="enchant-dev gpgme-dev gtk+-dev gtkspell-dev libgpg-error-dev \ |
Hans-G?nter@21994 | 19 openldap-dev openssl-dev" |
pankso@10439 | 20 |
pascal@24462 | 21 # What is the latest version available today? |
pascal@24462 | 22 current_version() |
pascal@24462 | 23 { |
pascal@24462 | 24 wget -O - https://sylpheed.sraoss.jp/en/download.html 2>/dev/null | \ |
pascal@24462 | 25 sed '/sylpheed-[0-9]/!d;/tar..z/!d;s|.*ylpheed-||;s|.tar.*||;q' |
pascal@24462 | 26 } |
pascal@24462 | 27 |
pankso@10439 | 28 # Rules to configure and make the package. |
pankso@10439 | 29 compile_rules() |
pankso@10439 | 30 { |
Hans-G?nter@21994 | 31 ./configure \ |
Hans-G?nter@21994 | 32 --enable-ldap \ |
Hans-G?nter@21994 | 33 --disable-updatecheck \ |
Hans-G?nter@21994 | 34 $CONFIGURE_ARGS && |
Hans-G?nter@21994 | 35 make && |
Hans-G?nter@21994 | 36 make install |
pankso@10439 | 37 } |
pankso@10439 | 38 |
pankso@10439 | 39 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@10439 | 40 genpkg_rules() |
pankso@10439 | 41 { |
pankso@10439 | 42 mkdir -p $fs/usr/lib |
Hans-G?nter@21994 | 43 |
Hans-G?nter@21994 | 44 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21994 | 45 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@10439 | 46 } |
Hans-G?nter@21995 | 47 |