diff options
Diffstat (limited to 'community/quesoglc/PKGBUILD')
-rw-r--r-- | community/quesoglc/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/quesoglc/PKGBUILD b/community/quesoglc/PKGBUILD new file mode 100644 index 000000000..8e12b892d --- /dev/null +++ b/community/quesoglc/PKGBUILD @@ -0,0 +1,28 @@ +# Contributor: Markus Pargmann + +pkgname=quesoglc +pkgver=0.7.2 +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') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('c2697a92e2cc00c537626020e4108a4e') + +build() { + cd ${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |