This commit is contained in:
milisman 2016-05-17 21:18:38 +00:00
commit ffdd750475
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# Description: An all-platform Edonkey client.
# URL: http://www.amule.org/
# Packager: milisarge
# Depends on: crypto++ libupnp wxgtk libnotify
name=amule
version=f77eef219cdb0caf31b094a9db4668e936abda8c
release=1
source=(http://repo.or.cz/amule.git/snapshot/$version.tar.gz)
build() {
cd $name-f77eef2
./configure \
--prefix=/usr \
--mandir=/usr/man
make
make install DESTDIR=$PKG
rm -r $PKG/usr/share/doc
}

View File

@ -0,0 +1,21 @@
# Description: An Portable Open Source UPnP Development Kit.
# URL: http://pupnp.sourceforge.net/
# Packager: milisarge
name=libupnp
version=1.6.19
release=1
source=(http://downloads.sourceforge.net/project/pupnp/pupnp/libUPnP%20$version/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-static \
--disable-dependency-tracking
make
make DESTDIR=$PKG install
}