wok view osmo/receipt @ rev 2653

acpid: up to 1.0.8
author Dominique Corbex <domcox@users.sourceforge.net>
date Sat Apr 18 16:57:45 2009 +0200 (2009-04-18)
parents 3d99ecce2d4b
children 4463b95d50a9
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 xorg-libXdamage"
9 BUILD_DEPENDS="gtk+ gtk+-dev libxml2-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://clay.ll.pl/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 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install &&
23 # UTF-8 fr.po = pango segfault if the system is not unicode.
24 rm -rf _pkg/usr/share/locale/fr
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }