wok-next annotate ht/receipt @ rev 11870
Up: zlib to 1.2.6.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Feb 27 18:14:18 2012 -0500 (2012-02-27) |
parents | e2dfaec40913 |
children | de49f29b101e |
rev | line source |
---|---|
pascal@4382 | 1 # SliTaz package receipt. |
pascal@4382 | 2 |
pascal@4382 | 3 PACKAGE="ht" |
pascal@4382 | 4 VERSION="2.0.17" |
pascal@4382 | 5 CATEGORY="development" |
pascal@4382 | 6 SHORT_DESC="File viewer/editor/analyser for text/binary/executable files." |
pascal@4382 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@4382 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4382 | 9 WEB_SITE="http://hte.sourceforge.net/" |
pascal@4382 | 10 WGET_URL="$SF_MIRROR/hte/$TARBALL" |
pascal@4382 | 11 DEPENDS="gcc-lib-base lzo ncurses xorg-libX11 xorg-libXau xorg-libXdmcp" |
pascal@4382 | 12 BUILD_DEPENDS="lzo-dev ncurses-dev" |
jozee@4937 | 13 TAGS="viewer editor analyser" |
pascal@4382 | 14 |
pascal@4382 | 15 # Rules to configure and make the package. |
pascal@4382 | 16 compile_rules() |
pascal@4382 | 17 { |
pascal@4382 | 18 cd $src |
pascal@4382 | 19 chmod +x install-sh |
pascal@4382 | 20 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@4382 | 21 --mandir=/usr/share/man \ |
pascal@4382 | 22 $CONFIGURE_ARGS && |
pascal@4382 | 23 make && |
pascal@4382 | 24 make DESTDIR=$PWD/_pkg install |
pascal@4382 | 25 } |
pascal@4382 | 26 |
pascal@4382 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4382 | 28 genpkg_rules() |
pascal@4382 | 29 { |
pascal@4382 | 30 cp -a $_pkg/usr $fs |
pascal@4382 | 31 } |
pascal@4382 | 32 |