You are not logged in.

#1 2004-12-15 11:53:57

Bjørn
Member
From: The Netherlands
Registered: 2004-03-18
Posts: 139
Website

[new] guichan

I've recently started to use Guichan with my Allegro using project that I plan to switch over to SDL. Guichan is a light GUI library (more of a framework) geared towards games that support Allegro, SDL and OpenGL and in a non-invasive way to your program. While 0.2.0 should be coming relatively soon, here's the PKGBUILD for 0.1.0:

# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
pkgname=guichan
pkgver=0.1.0
pkgrel=1
pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL."
url="http://guichan.darkbits.org/"
license="BSD"
depends=('sdl' 'allegro')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://guichan.darkbits.org/downloads/$pkgname-$pkgver-src.tar.gz)

build() {
  cd $startdir/src/$pkgname
  ./configure --prefix=/usr
  make || return 1
  make prefix=$startdir/pkg/usr install
}

For all my PKGBUILDs see http://www.lindeijer.nl/~bjorn/abs/.


http://themanaworld.org/
A Free Real-time Massively Multiplayer Online RPG in development.

Offline

#2 2005-03-21 00:23:22

Bjørn
Member
From: The Netherlands
Registered: 2004-03-18
Posts: 139
Website

Re: [new] guichan

Guichan 0.3.0 was released recently. The URLs needed updating as well, he's the new PKGBUILD:

# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
pkgname=guichan
pkgver=0.3.0
pkgrel=1
pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL."
url="http://guichan.sourceforge.net/"
license="BSD"
depends=('sdl' 'allegro')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://dl.sourceforge.net/sourceforge/guichan/guichan-$pkgver-src.tar.gz)

build() {
  cd $startdir/src/$pkgname-$pkgver-src
  ./configure --prefix=/usr
  make || return 1
  make prefix=$startdir/pkg/usr install
}

http://themanaworld.org/
A Free Real-time Massively Multiplayer Online RPG in development.

Offline

Board footer

Powered by FluxBB