wok-tiny view ctorrent-dnh/receipt @ rev 183

linux: fix bundle.S
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 26 17:09:38 2023 +0000 (7 months ago)
parents eb617e43dc08
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ctorrent-dnh"
4 VERSION="3.3.2"
5 CATEGORY="network"
6 GROUP="network"
7 SHORT_DESC="Command line Bittorrent client."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 [ -n "$TARGET" ] || TARGET="i486"
11 DEPENDS="busybox-net libc++ libm libgcc_s"
12 BUILD_DEPENDS="uclibc-cross-compiler-$TARGET"
13 TARBALL="${PACKAGE}$VERSION.tar.gz"
14 WEB_SITE="http://www.rahul.net/dholmes/ctorrent/"
15 WGET_URL="$SF_MIRROR/dtorrent/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --with-ssl=no \
23 --host=$TARGET-pc-linux-gnu \
24 CXX=uclibc-$TARGET-c++ \
25 CC=uclibc-$TARGET-cc &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }