mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
572 B
Bash
20 lines
572 B
Bash
# Maintainer: Manuel Rotter <rotter.manuel@gmail.com>
|
|
|
|
pkgname=sdl_ttf
|
|
pkgver=2.0.9
|
|
pkgrel=1
|
|
pkgdesc="A library that allows you to use TrueType fonts in your SDL applications"
|
|
arch=(arm)
|
|
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=('6dd5a85e4924689a35a5fb1cb3336156')
|
|
|
|
build() {
|
|
cd ${startdir}/src/SDL_ttf-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|