You are not logged in.
Pages: 1
PKGBUILD
#Contributor: Lukas Sabota <punkrockguy318@comcast.net>
pkgname=armagetron
pkgver=0.2.5.2
pkgrel=2
pkgdesc="A Tron clone in 3d"
url="http://heanet.dl.sourceforge.net/sourceforge/armagetron/armagetron-0.2.5.2.tar.gz"
depends=(sdl_image sdl sdl_mixer)
source=($pkgname-$pkgver.tar.gz)
md5sums=(99bb6761c3791653762aa3135c51a646)
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make
make install
}
This is an awesome game! Way addictive :twisted: Hope you guys like it!! Works great for me, see how it works for you!
edit: i updated the package to remove the unneeded mesa dependency
If I have the gift of prophecy and can fathom all mysteries and all knowledge, and if I have a faith that can move mountains, but have not love, I am nothing. 1 Corinthians 13:2
Offline
Hi! I cant compile armagetron with this pkgbuild, it return many errors while compiling. What gcc do you use?
Offline
By date it must be gcc-3.3.3...
I use 3.4, anybody can compile armagetron on gcc 3.4?
Offline
What errors?
BTW did you notice that stuff from url should be really in source? Maybe you just can't download it ? url should be just http://armagetron.sf.net. Or is this really gcc error?
Offline
This errored to death on me. Using gcc 3.4.1 . It complains about stuff ranging from bad constructors and destructors to...well everything. :? Good game though...I played it way back when I used mandrake :oops:
The suggestion box only accepts patches.
Offline
I nagged the devel's, and they said they would release a maintainence release in 3-4 weeks! Yes!
If I have the gift of prophecy and can fathom all mysteries and all knowledge, and if I have a faith that can move mountains, but have not love, I am nothing. 1 Corinthians 13:2
Offline
What errors?
Error in every line during compiling
I nagged the devel's, and they said they would release a maintainence release in 3-4 weeks! Yes! Very Happy
It mean they release version that support gcc-3.4? If yes it cool! And i dont need to downgrade gcc
Offline
I couldn't build this with gcc 3.4 either. I went ahead and installed
gcc 3.3.3 using a pkgbuild from incomming so I have both gcc 3.4
and 3.3 on my system. I know I have to specify a CC variable in
the pkgbild to tell it to use gcc 3.3.3 but im not sure how to to
this. I tried adding CC=gcc-3.3.3 to the build. Am I doing this
wrong? I still get errors during the build the same as when I use
gcc 3.4 to compile it.
here's the pkgbuild I'm using. Could someone tell me how to
use the CC variable with gcc-3.3.3 ? I have gcc-3.3.3 installed in
/opt. Do I need to tell the pkgbuild where gcc-3.3.3 is?
pkgname=armagetron
pkgver=0.2.5.2
pkgrel=2
pkgdesc="A Tron clone in 3d"
url="http://prdownloads.sourceforge.net/armagetron/armagetron-0.2.5.2.tar.gz?use_mirror=umn"
depends=(sdl_image sdl sdl_mixer)
source=($pkgname-$pkgver.tar.gz)
md5sums=(99bb6761c3791653762aa3135c51a646)
CC=gcc-3.3.3
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make
make install
}
-- archlinux 是一个极好的 linux。
Offline
Pages: 1