mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 22:07:15 +08:00
23 lines
663 B
Bash
23 lines
663 B
Bash
# $Id: PKGBUILD 51824 2009-09-12 07:08:21Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=sdl_ttf
|
|
pkgver=2.0.9
|
|
pkgrel=2
|
|
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=('6dd5a85e4924689a35a5fb1cb3336156')
|
|
|
|
build() {
|
|
cd ${srcdir}/SDL_ttf-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|