summaryrefslogtreecommitdiff
path: root/extra/sdl_ttf/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/sdl_ttf/PKGBUILD')
-rw-r--r--extra/sdl_ttf/PKGBUILD23
1 files changed, 13 insertions, 10 deletions
diff --git a/extra/sdl_ttf/PKGBUILD b/extra/sdl_ttf/PKGBUILD
index 094bd8fd1..5e325a316 100644
--- a/extra/sdl_ttf/PKGBUILD
+++ b/extra/sdl_ttf/PKGBUILD
@@ -1,26 +1,29 @@
-# $Id: PKGBUILD 85134 2010-07-09 10:09:49Z allan $
-# Maintainer: Allan McRae <allan@archlinux.org>
+# $Id: PKGBUILD 146690 2012-01-16 11:37:07Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=sdl_ttf
-pkgver=2.0.10
+pkgver=2.0.11
pkgrel=1
pkgdesc="A library that allows you to use TrueType fonts in your SDL applications"
arch=('i686' 'x86_64' 'mips64el')
-license=('LGPL')
+license=('custom')
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')
+source=(http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$pkgver.tar.gz)
+md5sums=('61e29bd9da8d245bc2471d1b2ce591aa')
build() {
- cd ${srcdir}/SDL_ttf-${pkgver}
- ./configure --prefix=/usr
+ cd "$srcdir/SDL_ttf-$pkgver"
+ ./configure --prefix=/usr --disable-static
make
}
package() {
- cd ${srcdir}/SDL_ttf-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd "$srcdir/SDL_ttf-$pkgver"
+ make DESTDIR="$pkgdir" install
+
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}