wok view opencpn/receipt @ rev 4235

xfdesktop: fix FSH
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 24 15:52:59 2009 +0200 (2009-09-24)
parents 449274d13a2b
children 92d081d995a2
line source
1 # SliTaz package receipt.
3 PACKAGE="opencpn"
4 VERSION="1.2.8"
5 CATEGORY="utilities"
6 SHORT_DESC="A concise Chart/plotter Navigator"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="wxWidgets mesa libglu libgl"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://opencpn.sourceforge.net"
11 WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/$PACKAGE/$TARBALL"
12 BUILD_DEPENDS="wxWidgets-dev mesa-dev libglu-mesa"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
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 cp -a $_pkg/usr/share $fs/usr
32 }