wok view osmo/receipt @ rev 769

Add tcc (Tiny C Compiler)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 11 11:36:09 2008 +0000 (2008-05-11)
parents eb4e6a1af180
children f686472ad1af
line source
1 # SliTaz package receipt.
3 PACKAGE="osmo"
4 VERSION="0.2.0"
5 CATEGORY="office"
6 SHORT_DESC="A handy personal organizer using GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libxml2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://clay.ll.pl/osmo/"
11 WGET_URL="$SF_MIRROR/$PACKAGE-pim/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 # UTF-8 fr.po = pango segfault if the system is not unicode.
23 rm -rf _pkg/usr/share/locale/fr
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }