wok-6.x diff opencpn/receipt @ rev 13845
lyx: fix for gcc 4.6
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jan 08 21:25:10 2013 +0100 (2013-01-08) |
parents | 08eee30bdf5f |
children | 380ffe05937a |
line diff
1.1 --- a/opencpn/receipt Mon Apr 30 10:06:51 2012 +0200 1.2 +++ b/opencpn/receipt Tue Jan 08 21:25:10 2013 +0100 1.3 @@ -5,11 +5,12 @@ 1.4 CATEGORY="utilities" 1.5 SHORT_DESC="A concise Chart/plotter Navigator" 1.6 MAINTAINER="allan316@gmail.com" 1.7 -DEPENDS="wxWidgets mesa libglu-mesa" 1.8 SUGGESTED="nvidia" 1.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.10 WEB_SITE="http://opencpn.sourceforge.net" 1.11 WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/$PACKAGE/$TARBALL" 1.12 + 1.13 +DEPENDS="wxWidgets mesa libglu-mesa" 1.14 BUILD_DEPENDS="wxWidgets-dev mesa-dev libglu-mesa" 1.15 TAGS="office" 1.16 1.17 @@ -26,14 +27,14 @@ 1.18 --infodir=/usr/share/info \ 1.19 --mandir=/usr/share/man \ 1.20 $CONFIGURE_ARGS && 1.21 - make && make DESTDIR=$PWD/_pkg install 1.22 + make && make DESTDIR=$DESTDIR install 1.23 } 1.24 1.25 # Rules to gen a SliTaz package suitable for Tazpkg. 1.26 genpkg_rules() 1.27 { 1.28 mkdir -p $fs/usr 1.29 - cp -a $_pkg/usr/bin $fs/usr 1.30 - cp -a $_pkg/usr/share $fs/usr 1.31 + cp -a $install/usr/bin $fs/usr 1.32 + cp -a $install/usr/share $fs/usr 1.33 } 1.34