mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
861 B
Bash
28 lines
861 B
Bash
# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
|
|
|
|
pkgname=multiget
|
|
pkgver=1.2.0
|
|
pkgrel=2
|
|
pkgdesc="Easy to use GUI file downloader"
|
|
url="http://multiget.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('wxgtk>=2.6')
|
|
makedepends=('intltool')
|
|
arch=('i686' 'x86_64')
|
|
source=('http://downloads.sourceforge.net/sourceforge/multiget/multiget-1.2.0.src.tar.bz2'
|
|
'multiget.desktop')
|
|
md5sums=('b62c4017ad2180cfa8b466e2bd320e40'
|
|
'd2ca4aa41dbf6e5893719b5e2dfd8f1d')
|
|
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}
|
|
./autogen.sh --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install || return 1
|
|
|
|
install -Dm644 ${startdir}/src/multiget.desktop \
|
|
${startdir}/pkg/usr/share/applications/multiget.desktop
|
|
install -Dm644 ${startdir}/src/multiget/newicons/48/logo_48.xpm \
|
|
${startdir}/pkg/usr/share/pixmaps/multiget.xpm
|
|
}
|