wok view amule/receipt @ rev 5353

Up: qt-everywhere-opensource-src (4.6.2) - Renamed qt-x11-opensource-src to qt-everywhere-opensource-src. Updated WEBSITE and WGET_URL. Remove libQtOpenGL since its not in qt anymore.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 28 16:29:16 2010 +0000 (2010-04-28)
parents f4fd0777003f
children 18a42b2b3a3d
line source
1 # SliTaz package receipt.
3 PACKAGE="amule"
4 VERSION="2.2.5"
5 CATEGORY="network"
6 SHORT_DESC="An eMule-like client for the eD2k and Kademlia networks."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="aMule"
9 DEPENDS="wxWidgets libupnp libbfd xorg-libXxf86vm"
10 BUILD_DEPENDS="wxWidgets-dev libupnp-dev cryptopp"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.amule.org/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 TAGS="p2p peer-to-peer file-share"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/amule $fs/usr/share
33 # Remove unused files in this base package.
34 rm $fs/usr/bin/autostart-xas
35 rm $fs/usr/share/amule/skins/kde4.zip
36 rm $fs/usr/share/amule/skins/gnome.zip
37 }