wok-6.x annotate libical/receipt @ rev 18549
Up freetype(2.6.1) (latest) with subpixel rendering available.
Good-looking and clear fonts for TFT screen without the need for freetype-infinality.
Good-looking and clear fonts for TFT screen without the need for freetype-infinality.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Nov 07 14:03:13 2015 +0200 (2015-11-07) |
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 |