26 lines
553 B
Plaintext
26 lines
553 B
Plaintext
# Description: An all-platform Edonkey client.
|
|
# URL: http://www.amule.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: crypto++ wxgtk
|
|
|
|
name=amule
|
|
version=11066
|
|
release=1
|
|
source=(https://repo.or.cz/amule.git/snapshot/7744fca103ef84bcd9d92792e5afb5d3957d44b5.tar.gz)
|
|
#https://downloads.sourceforge.net/project/amule/aMule/$version/aMule-$version.tar.bz2
|
|
|
|
build() {
|
|
cd amule-*
|
|
#cd aMule-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-optimize \
|
|
--disable-nls
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|