wok annotate libical/receipt @ rev 20742

updated bchunk (1.2.0 -> 1.2.2)
author Hans-G?nter Theisgen
date Sun Feb 10 09:37:43 2019 +0100 (2019-02-10)
parents 8f447cf2eee5
children b18d8ad76ff8
rev   line source
erjo@4741 1 # SliTaz package receipt.
erjo@4741 2
erjo@4741 3 PACKAGE="libical"
erjo@4741 4 VERSION="0.44"
erjo@4741 5 CATEGORY="system-tools"
erjo@4741 6 SHORT_DESC="Opensource ICalendar implementation"
erjo@4741 7 MAINTAINER="erjo@slitaz.org"
pascal@15473 8 LICENSE="MPL LGPL"
erjo@4741 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20421 10 WEB_SITE="https://sourceforge.net/projects/freeassociation/"
erjo@4741 11 WGET_URL="http://downloads.sourceforge.net/project/freeassociation/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
erjo@4741 12
pascal@15473 13 DEPENDS=""
pascal@15473 14
erjo@4741 15 # Rules to configure and make the package.
erjo@4741 16 compile_rules()
erjo@4741 17 {
erjo@4741 18 cd $src
erjo@4741 19 ./configure \
erjo@4741 20 --prefix=/usr \
erjo@4741 21 --infodir=/usr/share/info \
erjo@4741 22 --mandir=/usr/share/man \
erjo@4741 23 $CONFIGURE_ARGS &&
pascal@15473 24 make && make DESTDIR=$DESTDIR install
erjo@4741 25 }
erjo@4741 26
erjo@4741 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4741 28 genpkg_rules()
erjo@4741 29 {
erjo@4741 30 mkdir -p $fs/usr/lib
pascal@15473 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@4741 32 }
erjo@4741 33