summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5ecdc78b1d7d6f72eb3d1c08c5e65506bb18d1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Contributor: Tudhalyas <tudhalyas_AT_gmail_DOT_com>
# Contributor: danitool <dgcbueu_AT_gmail_DOT_com>

pkgname=amulegui-upnp
pkgver=10871
pkgrel=1
pkgdesc="Remote GUI for the aMule Daemon, an eMule-like client for the ed2k p2p network"
arch=('i686' 'x86_64')
url="http://www.amule.org/"
license=('GPL')
depends=('wxgtk>=2.8.0' 'gd>=2.0.34' 'binutils>=2.17.50.0.18' 'geoip>=1.4.4' 'libupnp>=1.6.6')
makedepends=('crypto++')
conflicts=('amule' 'amule-svn' 'amule-noupnp-svn' 'amule-noupnp')
provides=("amulegui=${pkgver}")
source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2)
md5sums=('f3c666b6fa518a3e6e2c21670c243292')

build() {
  cd ${srcdir}/aMule-SVN-r${pkgver}
  ./configure --prefix=/usr \
              --mandir=/usr/share/man \
              --enable-optimize \
              --enable-amule-gui \
              --disable-cas \
              --disable-alcc \
              --enable-upnp \
	      --enable-geoip \
	      --disable-monolithic \
              --disable-wxcas \
              --disable-alc \
              --disable-debug
  make || return 1
}

package() {
  cd ${srcdir}/aMule-SVN-r${pkgver}
  make DESTDIR=${pkgdir}/ install || return 1
}