wok annotate libical/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents 64355b44ae8c
children 86790a278e70
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"
erjo@4741 10 WEB_SITE="http://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