wok view atftp/receipt @ rev 24332

updated audacious packages (3.10.1 -> 4.1)
author Hans-G?nter Theisgen
date Thu Jan 27 17:51:18 2022 +0100 (2022-01-27)
parents 6f37b5844e8d
children 21f65cda07b9
line source
1 # SliTaz package receipt.
3 PACKAGE="atftp"
4 VERSION="0.7.5"
5 CATEGORY="network"
6 SHORT_DESC="Advanced Trivial File Transport Protocol client."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://sourceforge.net/projects/atftp/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="ncurses readline"
15 BUILD_DEPENDS="pcre-dev readline-dev"
17 HOST_ARCH="i486 arm"
19 # @maintainer: Please update also atftpd
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 # 0.7
25 # sed -i -e 's/char \*__entry) __THROW/char *__entry))/' \
26 # -e 's/^_*argz_next/__NTH(&/' argz.h
28 sed -i 's|CLK_TCK|CLOCKS_PER_SEC|' stats.c
30 ./configure \
31 --prefix=/usr \
32 --infodir=/usr/share/info \
33 --mandir=/usr/share/man \
34 $CONFIGURE_ARGS &&
35 make &&
36 make install DESTDIR=$DESTDIR
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 cook_copy_folders bin
43 }