wok-undigest annotate evolution-plugin/receipt @ rev 1247

copied recipes for libffi and libffi-dev from cooking wok
author Hans-G?nter Theisgen
date Fri Aug 12 17:07:39 2022 +0100 (22 months ago)
parents 6b158c4f9b61
children
rev   line source
erjo@2 1 # SliTaz package receipt.
erjo@2 2
erjo@2 3 PACKAGE="evolution-plugin"
pascal@442 4 VERSION="2.28.1"
pascal@411 5 CATEGORY="network"
pascal@411 6 SHORT_DESC="Integrated mail, addressbook and calendaring plugins."
pascal@411 7 MAINTAINER="erjo@slitaz.org"
pascal@1039 8 LICENSE="LGPL2"
erjo@2 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@411 10 WEB_SITE="http://projects.gnome.org/evolution/download.shtml"
pascal@411 11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/${VERSION%.*}/$TARBALL"
erjo@2 12
pascal@1039 13 DEPENDS=""
pascal@1039 14
erjo@2 15 # Rules to configure and make the package.
erjo@2 16 compile_rules()
erjo@2 17 {
erjo@2 18 cd $src
erjo@2 19 ./configure \
erjo@2 20 --prefix=/usr \
erjo@2 21 --infodir=/usr/share/info \
erjo@2 22 --mandir=/usr/share/man \
erjo@2 23 $CONFIGURE_ARGS &&
pascal@1039 24 make && make DESTDIR=$DESTDIR install
erjo@2 25 }
erjo@2 26
erjo@2 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2 28 genpkg_rules()
erjo@2 29 {
erjo@2 30 mkdir -p $fs/usr
pascal@1039 31 cp -a $install/usr/bin $fs/usr
erjo@2 32 }
erjo@2 33