wok annotate putty/receipt @ rev 4886
Fix putty VERSION
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Feb 06 00:11:28 2010 +0100 (2010-02-06) |
parents | 734283599021 |
children | 3a535152c0cf |
rev | line source |
---|---|
rcx@4035 | 1 # SliTaz package receipt. |
rcx@4035 | 2 |
rcx@4035 | 3 PACKAGE="putty" |
pankso@4886 | 4 VERSION="0.60-2010-02-05" |
rcx@4035 | 5 CATEGORY="utilities" |
rcx@4035 | 6 SHORT_DESC="A free telnet/SSH client." |
rcx@4035 | 7 MAINTAINER="rcx@zoominternet.net" |
rcx@4035 | 8 DEPENDS="glibc-base expat zlib gtk+ atk cairo freetype fontconfig glib \ |
rcx@4035 | 9 libgio pango pixman libpng libxcb xcb-util xorg-libX11 xorg-libXau \ |
rcx@4035 | 10 xorg-libXcomposite xorg-libXcursor xorg-libXdamage xorg-libXdmcp \ |
paul@4370 | 11 xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender krb5" |
erjo@4784 | 12 BUILD_DEPENDS="slitaz-toolchain gtk+-dev imagemagick python perl krb5-dev" |
rcx@4035 | 13 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@4784 | 14 #WEB_SITE="http://putty.linux-mirror.org/" |
rcx@4035 | 15 #WGET_URL="http://putty.linux-mirror.org/latest/$TARBALL" |
rcx@4035 | 16 WGET_URL="http://tartarus.org/~simon/putty-snapshots/$TARBALL" |
erjo@4784 | 17 |
rcx@4035 | 18 # Rules to configure and make the package. |
rcx@4035 | 19 compile_rules() |
rcx@4035 | 20 { |
rcx@4035 | 21 |
rcx@4035 | 22 cd $src/icons && |
rcx@4035 | 23 make && |
rcx@4035 | 24 make install && |
rcx@4035 | 25 |
rcx@4035 | 26 cd $src/unix && |
rcx@4035 | 27 |
rcx@4035 | 28 sed -e 's/-Werror//g' -i configure && |
rcx@4035 | 29 ./configure \ |
rcx@4035 | 30 --prefix=/usr \ |
rcx@4035 | 31 --mandir=/usr/share/man \ |
rcx@4035 | 32 $CONFIGURE_ARGS && |
rcx@4035 | 33 make XFLAGS=-DTELNET_DEFAULT && |
erjo@4784 | 34 make DESTDIR=$src/_pkg install |
erjo@4784 | 35 # && |
erjo@4784 | 36 #cp $src/icons/pterm-48.png $src/_pkg/usr/share/pixmaps/pterm.png && |
erjo@4784 | 37 #cp $src/icons/putty-48.png $src/_pkg/usr/share/pixmaps/putty.png |
rcx@4035 | 38 } |
rcx@4035 | 39 |
rcx@4035 | 40 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@4035 | 41 genpkg_rules() |
rcx@4035 | 42 { |
erjo@4784 | 43 mkdir -p $fs/usr/share $fs/usr/share/pixmaps |
erjo@4784 | 44 |
erjo@4784 | 45 cp -a stuff/applications $src/_pkg/usr/share |
rcx@4035 | 46 cp -a $_pkg/usr/bin $fs/usr |
rcx@4035 | 47 cp -a $_pkg/usr/share/applications $fs/usr/share |
rcx@4035 | 48 cp -a $_pkg/usr/share/pixmaps $fs/usr/share |
erjo@4784 | 49 cp -a $src/icons/pterm-48.png $fs/usr/share/pixmaps/pterm.png |
erjo@4784 | 50 cp -a $src/icons/putty-48.png $fs/usr/share/pixmaps/putty.png |
rcx@4035 | 51 } |