blob: c42ae63bffb9f9ba103b213e0d5346c3333c1d99 (
plain)
1 # Description: An all-platform Edonkey client.
2 # URL: http://www.amule.org/
3 # Maintainer: Antti Nykanen, aon at iki dot fi
4 # Depends on: wxgtk, crypto++
5
6 name=amule
7 version=2.2.6
8 release=1
9 source=(http://download.berlios.de/amule/aMule-$version.tar.bz2)
10
11 build() {
12 cd aMule-$version
13 export CFLAGS="${CFLAGS//-fstack-protector/}"
14 export CXXFLAGS="${CXXFLAGS//-fstack-protector/}"
15 ./configure --prefix=/usr \
16 --mandir=/usr/man \
17 --disable-nls
18 make
19 make install DESTDIR=$PKG
20 rm -r $PKG/usr/{share/{doc,amule},man,lib,bin/autostart-xas}
21 }
|