2008-02-11 21:45:43 +11:00
|
|
|
# Description: SDL graphics drawing primitives and other support functions.
|
2020-05-31 22:21:14 +10:00
|
|
|
# URL: https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2008-02-11 21:45:43 +11:00
|
|
|
# Depends on: libsdl
|
|
|
|
|
|
|
|
name=sdl_gfx
|
2020-05-31 22:21:14 +10:00
|
|
|
version=2.0.26
|
2008-05-23 19:29:07 +10:00
|
|
|
release=1
|
2020-05-31 22:21:14 +10:00
|
|
|
source=(https://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-$version.tar.gz)
|
2008-02-11 21:45:43 +11:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd SDL_gfx-$version
|
2020-05-31 22:21:14 +10:00
|
|
|
|
|
|
|
# shipped configure was not regenerated since 2.0.25, resulting in bad soname
|
|
|
|
autoreconf -fvi
|
|
|
|
|
|
|
|
./configure --prefix=/usr
|
2008-02-11 21:45:43 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|