You are not logged in.
Hi to all. Im newbie. Im interested to install pyogre in archlinux but I doesn't see information about to install pyogre on archlinux.
Its possible that anyone helps me?
thx
Offline
Is this what you mean?
In the future, you'll usually get quicker replies for nearly everything if you include all the relevant information right away. ![]()
My Arch Linux Stuff • Forum Etiquette • Community Ethos - Arch is not for everyone
Offline
pkgname=python-ogre
pkgver=1.6.1_r940
pkgrel=1
pkgdesc="Python bindings for the Ogre 3D graphics engine (formerly pyogre)"
arch=('i686' 'x86_64')
url="http://www.python-ogre.org/"
license=('LGPL')
depends=('ogre' 'python>=2.6')
makedepends=('p7zip')
source=(http://downloads.sourceforge.net/$pkgname/Python-Ogre-${pkgver/_/-}-py26-update.7z)
md5sums=('037fb9c48f22f8b14463484a026d55c7')
build() {
cd "$srcdir"
7z x Python-Ogre-${pkgver/_/-}-py26-update.7z || return 1
python Setup.py install --prefix=/usr --root="$pkgdir" || return 1
}Offline
Or you can do a nice PKGBUILD like this, in more cases the users do that.
Offline