wok-next annotate xchm/receipt @ rev 2579
xchat: update build_depends
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 07 10:01:10 2009 +0000 (2009-04-07) |
parents | 6de8a52d7266 |
children | 3ee8a4a0be3d |
rev | line source |
---|---|
erjo@1306 | 1 # SliTaz package receipt. |
erjo@1306 | 2 |
erjo@1306 | 3 PACKAGE="xchm" |
erjo@1306 | 4 VERSION="1.14" |
erjo@1306 | 5 CATEGORY="utilities" |
erjo@1306 | 6 SHORT_DESC="Cross-platform GUI for chmlib" |
erjo@1306 | 7 MAINTAINER="allan316@gmail.com" |
pascal@2528 | 8 DEPENDS="wxWidgets chmlib libiconv xorg-libXdamage" |
erjo@1306 | 9 BUILD_DEPENDS="wxWidgets wxWidgets-dev chmlib-dev" |
erjo@1306 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@1306 | 11 WEB_SITE="http://xchm.sourceforge.net" |
erjo@1306 | 12 WGET_URL="http://transact.dl.sourceforge.net/sourceforge/xchm/$TARBALL" |
erjo@1306 | 13 |
erjo@1306 | 14 # Rules to configure and make the package. |
erjo@1306 | 15 compile_rules() |
erjo@1306 | 16 { |
erjo@1306 | 17 cd $src |
erjo@1306 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2528 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2528 | 20 make && |
erjo@1306 | 21 make DESTDIR=$PWD/_pkg install |
erjo@1306 | 22 } |
erjo@1306 | 23 |
erjo@1306 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1306 | 25 genpkg_rules() |
erjo@1306 | 26 { |
erjo@1306 | 27 mkdir -p $fs/usr/share/locale \ |
erjo@1306 | 28 $fs/usr/share/applications \ |
erjo@1306 | 29 |
erjo@1306 | 30 cp -a $_pkg/usr/bin $fs/usr |
erjo@1306 | 31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@1306 | 32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share |
erjo@1306 | 33 |
erjo@1306 | 34 cp -a stuff/*.desktop $fs/usr/share/applications |
erjo@1306 | 35 } |
erjo@1306 | 36 |