wok view osmo/receipt @ rev 4954

xarchive: add lrzip support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 17 16:44:15 2010 +0100 (2010-02-17)
parents 4463b95d50a9
children 6ec17b55b59a
line source
1 # SliTaz package receipt.
3 PACKAGE="osmo"
4 VERSION="0.2.6"
5 CATEGORY="office"
6 SHORT_DESC="A handy personal organizer using GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libxml2 xorg-libXdamage"
9 BUILD_DEPENDS="gtk+ gtk+-dev libxml2-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://clayo.org/osmo/"
12 WGET_URL="$SF_MIRROR/$PACKAGE-pim/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -i 's/gtkspell-/gtkDISABLEDspell-/' configure
19 patch -p0 -i ../stuff/notes_items.patch || exit 1
20 ./configure \
21 --prefix=/usr \
22 --enable-printing=no \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }