summaryrefslogtreecommitdiffstats
path: root/abs/extra/sdl_ttf/PKGBUILD
blob: 56e56d9f040e86ceb0ae18a0c247efc9ac8fe21a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
}