diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/sdl_ttf |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/sdl_ttf')
-rw-r--r-- | extra/sdl_ttf/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/sdl_ttf/PKGBUILD b/extra/sdl_ttf/PKGBUILD new file mode 100644 index 000000000..56e56d9f0 --- /dev/null +++ b/extra/sdl_ttf/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 85134 2010-07-09 10:09:49Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=sdl_ttf +pkgver=2.0.10 +pkgrel=1 +pkgdesc="A library that allows you to use TrueType fonts in your SDL applications" +arch=('i686' 'x86_64') +license=('LGPL') +url="http://www.libsdl.org/projects/SDL_ttf/" +depends=('sdl>=1.2.12' 'freetype2') +options=('!libtool') +source=(http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-${pkgver}.tar.gz) +md5sums=('814e6e17e8879254208d23b3b7e0354b') + +build() { + cd ${srcdir}/SDL_ttf-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/SDL_ttf-${pkgver} + make DESTDIR=${pkgdir} install +} |