diff options
Diffstat (limited to 'extra/ftgl/PKGBUILD')
-rw-r--r-- | extra/ftgl/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/extra/ftgl/PKGBUILD b/extra/ftgl/PKGBUILD new file mode 100644 index 000000000..b284d4289 --- /dev/null +++ b/extra/ftgl/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 114670 2011-03-15 12:17:12Z heftig $ +# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> +# Contributor: Alexander Baldeck <alexander@archlinux.org> +# Contributor: tobias <tobias@archlinux.org> + +pkgname=ftgl +_pkgver=2.1.3-rc5 +pkgver=${_pkgver/-/} +pkgrel=2 +pkgdesc="OpenGL library to use arbitrary fonts" +arch=(i686 x86_64) +url="http://ftgl.wiki.sourceforge.net/" +license=(MIT) +depends=(freetype2 glut) +makedepends=(doxygen) +options=('!libtool') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.bz2") +md5sums=('c7879018cde844059495b3029b0b6503') + +build() { + cd "$srcdir/$pkgname-${_pkgver/-/~}" + ./configure --prefix=/usr --with-pic + make +} + +package() { + cd "$srcdir/$pkgname-${_pkgver/-/~}" + make DESTDIR="$pkgdir" install + + # FS#23283: install missing headers for OpenCascade + install -m644 src/FT{Face,Library,Size}.h "$pkgdir/usr/include/FTGL/" + + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} |