You are not logged in.
[edit] ogre 1.0 is available here http://bbs.archlinux.org/viewtopic.php?t=10655, this package remains for people wanting non-1.0 versions because of API changes [/edit]
heres a PKGBUILD for ogre 0.15.1
I used a PKGBUILD from another thread (http://bbs.archlinux.org/viewtopic.php? … light=ogre.
I also moved it to /opt/ogre
its annoying having it scattered about the system, especially if you want to do any development with the scene managers..
the nvidia toolkit dependency can be found in the above thread.
enjoy
pkgname=ogre
pkgver=0.15.1
pkgrel=1
pkgdesc="ogre3d (Object-oriented Graphics Rendering Engine)"
url="http://www.ogre3d.org/"
license="GPL"
depends=('nvidia-cg-toolkit' 'devil')
source=(http://dl.sourceforge.net/sourceforge/ogre/ogre-linux_osx-v0-15-1.tar.bz2)
build() {
cd $startdir/src/ogrenew
rm autom4te.cache/ -rf
./configure --prefix=/opt/ogre
make || return 1
make prefix=$startdir/pkg/opt/ogre install
echo -e "export PATH=$PATH:/opt/ogre/binnexport PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/opt/ogre/lib/pkgconfig" > $startdir/pkg/etc/profile.d/ogre.sh
}
md5sums=('b6f32f431727a000b739abde8784700b')
Offline