2023-03-03 13:32:51 -05:00
|
|
|
# Description: Glue between SDL and the GNOME text rendering engine.
|
2007-02-17 13:17:43 +11:00
|
|
|
# URL: http://sdlpango.sourceforge.net/
|
2023-03-03 13:32:51 -05:00
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
2011-01-11 21:41:13 +11:00
|
|
|
# Depends on: pango libsdl
|
2007-02-17 13:17:43 +11:00
|
|
|
|
|
|
|
name=sdl_pango
|
|
|
|
version=0.1.2
|
2019-12-30 12:54:17 +11:00
|
|
|
release=2
|
|
|
|
source=(https://downloads.sourceforge.net/sourceforge/sdlpango/SDL_Pango-$version.tar.gz
|
|
|
|
SDL_Pango-$version-API-adds.patch
|
|
|
|
matrix_declarations.patch)
|
2007-02-17 13:17:43 +11:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd SDL_Pango-$version
|
|
|
|
patch -p0 -i $SRC/SDL_Pango-$version-API-adds.patch
|
2019-12-30 12:54:17 +11:00
|
|
|
patch -p1 -i $SRC/matrix_declarations.patch
|
2007-02-17 13:17:43 +11:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|