wok annotate atftp/receipt @ rev 22513

updated atftp and atftpd (0.7 -> 0.7.2)
author Hans-G?nter Theisgen
date Wed Jan 01 16:03:49 2020 +0100 (2020-01-01)
parents 11b5e93cb5f2
children 6f37b5844e8d
rev   line source
pascal@7223 1 # SliTaz package receipt.
pascal@7223 2
pascal@7223 3 PACKAGE="atftp"
Hans-G?nter@22513 4 VERSION="0.7.2"
pascal@7223 5 CATEGORY="network"
pascal@7223 6 SHORT_DESC="Advanced Trivial File Transport Protocol client."
pascal@7223 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15201 8 LICENSE="GPL2"
al@19275 9 WEB_SITE="http://freshmeat.net/projects/atftp/"
Hans-G?nter@22513 10
pascal@7223 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@22513 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
erjo@9889 13
erjo@9889 14 DEPENDS="ncurses readline"
erjo@9889 15 BUILD_DEPENDS="pcre-dev readline-dev"
pascal@7223 16
Hans-G?nter@22513 17 HOST_ARCH="i486 arm"
Hans-G?nter@22513 18
pascal@7223 19 # Rules to configure and make the package.
pascal@7223 20 compile_rules()
pascal@7223 21 {
Hans-G?nter@22513 22 # 0.7
Hans-G?nter@22513 23 # sed -i -e 's/char \*__entry) __THROW/char *__entry))/' \
Hans-G?nter@22513 24 # -e 's/^_*argz_next/__NTH(&/' argz.h
pascal@7223 25 sed -i 's/CLK_TCK/CLOCKS_PER_SEC/' stats.c
Hans-G?nter@22513 26
Hans-G?nter@22513 27 ./configure \
Hans-G?nter@22513 28 --prefix=/usr \
Hans-G?nter@22513 29 --infodir=/usr/share/info \
Hans-G?nter@22513 30 --mandir=/usr/share/man \
Hans-G?nter@22513 31 $CONFIGURE_ARGS &&
pascal@7223 32 make &&
erjo@9889 33 make DESTDIR=$DESTDIR install
pascal@7223 34 }
pascal@7223 35
pascal@7223 36 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7223 37 genpkg_rules()
pascal@7223 38 {
pascal@7223 39 mkdir -p $fs/usr
Hans-G?nter@22513 40 cp -a $install/usr/bin $fs/usr
pascal@7223 41 }