amule: Initial commit

This commit is contained in:
Daniel Walpole 2006-05-02 06:33:44 +00:00
parent 1b7740d98f
commit bce0f4e13d
3 changed files with 39 additions and 0 deletions

18
amule/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/amule
-rwxr-xr-x root/root usr/bin/ed2k
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/xchat/
drwxr-xr-x root/root usr/lib/xchat/plugins/
-rw-r--r-- root/root usr/lib/xchat/plugins/xas.pl
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/amule.1.gz
-rw-r--r-- root/root usr/man/man1/ed2k.1.gz
-rw-r--r-- root/root usr/man/man1/xas.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/amule.desktop
drwxr-xr-x root/root usr/share/pixmaps/
-rw-r--r-- root/root usr/share/pixmaps/amule.xpm

1
amule/.md5sum Normal file
View File

@ -0,0 +1 @@
a25521d358f65ae45744ee0099922069 aMule-2.1.1.tar.bz2

20
amule/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: An all-platform Edonkey client.
# URL: http://www.amule.org/
# Maintainer: Daniel Walpole, daniel at walpole dot id dot au
# Depends on: wxgtk
name=amule
version=2.1.1
release=1
source=(http://download.berlios.de/amule/aMule-$version.tar.bz2)
build() {
cd aMule-$version
export CFLAGS="${CFLAGS//-fstack-protector/}"
export CXXFLAGS="${CXXFLAGS//-fstack-protector/}"
./configure --prefix=/usr \
--disable-nls
make
make install DESTDIR=$PKG
rm -r $PKG/usr/{man/??,share/doc/}
}