You are not logged in.
Pages: 1
Gwget is a download manager for Gnome.
pkgname=gwget
pkgver=0.14.1
pkgrel=1
pkgdesc="Gwget its a download manager for Gnome."
url="http://gwget.sourceforge.net"
license="GPL"
depends=('wget' 'gtk2' 'libgnomeui' 'x-server')
makedepends=('perlxml')
source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('31040273567636bcbb4d660dbde12909')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
I prefixed it to /opt/gnome since there's no --disable-gnome option, and since the official description of the application states that it is for Gnome.
Enjoy.
EDIT: Changed the prefix to /usr
Some PKGBUILDs: http://members.lycos.co.uk/sweiss3
Offline
Lol, just made a pkgbuild for it 2 days ago and forgot to post, but it's pretty much like yours.
Just one thing, you dont need to put x-server as a dep, since gtk2 depends on pango and pango depends on x-server.
Kaleph
jabber: kaleph@jabber.org
Offline
Well, I just followed namcap on this one. I checked to see wether gtk2 depended on x-server and since it wasn't the case I didn't bother to go deeper into the dependency tree.
Some PKGBUILDs: http://members.lycos.co.uk/sweiss3
Offline
Since gwget can be compiled without wget, so it's better write dependency like this:
make depends=('wget')
Just one suggestion.
Offline
Hmm, as far as I know the makedepends array should contain packages which are needed in order to build the application, but do not require it at runtime. Gwget might work without wget, but since it is a frontend to wget you will need it anyway.
Some PKGBUILDs: http://members.lycos.co.uk/sweiss3
Offline
With everything up2date and with the prefix /opt/gnome on my pc it crashes on startup
I've changed prefix with /usr and now everything is fine.
Offline
Actually I build it prefixed to /usr at the start, seeing it acts as a gnome application I changed the prefix in the pkgbuild but never rebuilt it myself, I'll change the prefix back.
Some PKGBUILDs: http://members.lycos.co.uk/sweiss3
Offline
as far as I know the makedepends array should contain packages which are needed in order to build the application, but do not require it at runtime.
Oh, thanks, I just understand it. But gwget doesn't work correctly on some links -it doesn't show speed or any useful information however downloading is going on by wget, so I prefer "downloader for x".
Offline
You'll have to ask the developers about it, maybe a bug report is needed?
Some PKGBUILDs: http://members.lycos.co.uk/sweiss3
Offline
Pages: 1