desktop/quesoglc/PKGBUILD

29 lines
656 B
Bash
Raw Normal View History

2016-01-21 00:22:34 +08:00
# Contributions from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/quesoglc
pkgname=quesoglc
pkgver=0.7.2
2016-01-21 00:22:34 +08:00
pkgrel=2
pkgdesc="A free implementation of the OpenGL Character Renderer (GLC)"
arch=('x86_64')
url='http://quesoglc.sourceforge.net/'
2016-01-21 00:22:34 +08:00
license=('LGPL2.1')
depends=('fontconfig' 'freeglut' 'fribidi' 'glew')
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
}