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