wok-stable view amule/receipt @ rev 11644

Up: amule to 2.3.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Feb 03 12:32:46 2012 -0500 (2012-02-03)
parents af9a1b47948c
children 134531ef9726
line source
1 # SliTaz package receipt.
3 PACKAGE="amule"
4 VERSION="2.3.1"
5 CATEGORY="network"
6 SHORT_DESC="An eMule-like client for the eD2k and Kademlia networks."
7 MAINTAINER="pankso@slitaz.org"
8 #SOURCE="aMule-SVN"
9 SOURCE="aMule"
10 DEPENDS="wxWidgets libupnp libbfd xorg-libXxf86vm"
11 BUILD_DEPENDS="wxWidgets-dev libupnp-dev cryptopp zlib-dev"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.amule.org/"
14 #WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 WGET_URL="http://amule.sourceforge.net/tarballs/$TARBALL"
16 TAGS="p2p peer-to-peer file-share"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make $MAKEFLAGS &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/amule $fs/usr/share
35 # Remove unused files in this base package.
36 rm $fs/usr/share/amule/skins/kde4.zip
37 rm $fs/usr/share/amule/skins/gnome.zip
38 }