mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
698 B
Bash
22 lines
698 B
Bash
# Contributor: Markus Pargmann
|
|
pkgname=quesoglc
|
|
pkgver=0.7.1
|
|
pkgrel=1
|
|
pkgdesc="The OpenGL Character Renderer (GLC) is a state machine that provides OpenGL programs with character rendering services via an application programming interface (API)."
|
|
arch=(i686 x86_64)
|
|
url="http://quesoglc.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('freetype2' 'fontconfig' 'freeglut' 'fribidi' 'mesa')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('6a2228d60b8522a9a1112933c629226e')
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd "$startdir/src/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$startdir/pkg" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|
|
|