wok view libical/receipt @ rev 19889

Up: gimp (2.8.20)
author Alexander Medvedev <devl547@gmail.com>
date Tue Apr 04 19:53:27 2017 +0000 (2017-04-04)
parents 64355b44ae8c
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="libical"
4 VERSION="0.44"
5 CATEGORY="system-tools"
6 SHORT_DESC="Opensource ICalendar implementation"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="MPL LGPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://sourceforge.net/projects/freeassociation/"
11 WGET_URL="http://downloads.sourceforge.net/project/freeassociation/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
13 DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }