You are not logged in.
I have found netradiant binaries built from git. I want to make a pkgbuild for it, but some things are not very clear to me... pls help.
pkgname=netradiant-git-bin
pkgver=20100214
pkgrel=1
pkgdesc="The bleeding edge version of the Q3A/Nexuiz \
level map editor"
url="http://icculus.org/netradiant/"
arch=('i686' 'x86_64')
license=('GPL')
depends=('gtk2' 'gtkglext' 'expat')
provides=('netradiant')
conflicts=('netradiant-git-bin')
case ${CARCH} in
i686)
source=(${source[@]} 'http://ingar.satgnu.net/gtkradiant/files/netradiant-20100214-x86_64.tar.bz2')
md5sums=(${md5sums[@]} '62f45928413f32005a2211a3cb0a6a51');;
x86_64)
source=(${source[@]} 'http://ingar.satgnu.net/gtkradiant/files/netradiant-20100214-x86.tar.bz2')
md5sums=(${md5sums[@]} '');;
esac
cd $srcdir/netradiant-$pkgver
tar jxvf netradiant-pkgver.tar.bz2Now it should copy it to /usr/bin? And install .desktop files.
How to do that?
Offline
I wrote a PKGBUILD based on netradiant-svn that uses the new git repository of the project:
Offline