summaryrefslogtreecommitdiff
path: root/community/quesoglc/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-03-19 10:03:21 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-03-19 10:03:21 +0100
commit46602cb86218c37b896a2c90aa702d94793b6779 (patch)
tree107fedff7db7ea57c5bd9684f98805b2f1167029 /community/quesoglc/PKGBUILD
parent7e6a790c47fb44426cdda8ea0aca8c247a524c5e (diff)
parentde5b6982e42f4a1e8b0537cfbc1b676e2a81f195 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/quesoglc/PKGBUILD community/trickle/PKGBUILD cross/cross-mips64el-unknown-linux-gnu-gcc-core-shared/PKGBUILD cross/cross-mips64el-unknown-linux-gnu-gcc-core/PKGBUILD cross/cross-mips64el-unknown-linux-gnu-glibc-headers/PKGBUILD cross/mips64el-unknown-linux-gnu-glibc/PKGBUILD extra/ffmpeg/PKGBUILD extra/perl-dbi/PKGBUILD extra/perl-net-dns/PKGBUILD extra/xfce4-dev-tools/PKGBUILD gnome-unstable/networkmanager/PKGBUILD multilib-testing/lib32-libdrm/PKGBUILD multilib-testing/lib32-libdrm/no-pthread-stubs.patch multilib/lib32-libxcb/PKGBUILD multilib/lib32-util-linux/PKGBUILD multilib/wine/PKGBUILD multilib/wine_gecko/PKGBUILD
Diffstat (limited to 'community/quesoglc/PKGBUILD')
-rw-r--r--community/quesoglc/PKGBUILD23
1 files changed, 12 insertions, 11 deletions
diff --git a/community/quesoglc/PKGBUILD b/community/quesoglc/PKGBUILD
index ec287ab3b..50397c44e 100644
--- a/community/quesoglc/PKGBUILD
+++ b/community/quesoglc/PKGBUILD
@@ -1,28 +1,29 @@
+# $Id: PKGBUILD 68088 2012-03-17 19:29:26Z giovanni $
+# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# 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).'
+pkgrel=2
+pkgdesc="A free implementation of the OpenGL Character Renderer (GLC)"
arch=('i686' 'x86_64' 'mips64el')
-url='http://quesoglc.sourceforge.net/'
-license=('GPL')
-depends=('freetype2' 'fontconfig' 'freeglut' 'fribidi' 'mesa')
+url="http://quesoglc.sourceforge.net/"
+license=('LGPL2.1')
+depends=('fontconfig' 'freeglut' 'fribidi' 'glew')
+makedepends=('pkg-config')
options=('!libtool')
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('c2697a92e2cc00c537626020e4108a4e')
build() {
- cd ${pkgname}-${pkgver}
-
- ./configure \
- --prefix=/usr
+ cd "${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
make
}
package() {
- cd ${pkgname}-${pkgver}
+ cd "${pkgname}-${pkgver}"
- make DESTDIR=${pkgdir} install
+ make DESTDIR="${pkgdir}" install
}