You are not logged in.
It isn't as hard as I thought. 8)
It's not perfect though. when I ran pacman -A tuxkart-0.4.0-1.pkg.tar.gz it installed it to /usr/games, which isn't in the PATH. That could just be how it installs without using makepkg, though.
Can anyone comment on that?
I haven't checked if anyone else has submitted it either. oops.
Here's the PKGBUILD:
pkgname=tuxkart
pkgver=0.4.0
pkgrel=1
pkgdesc="3D race cart game starring Tux"
url="http://tuxkart.sourceforge.net/"
license="GPL"
depends=('plib' 'xfree86')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://tuxkart.sourceforge.net/dist/$pkgname-$pkgver.tar.gz)
md5sums=('e84ab2748ff1ce5ef11d1d7da5188f8f')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
Offline