contrib/sdl_gfx/Pkgfile
2020-05-31 22:21:14 +10:00

21 lines
530 B
Plaintext

# Description: SDL graphics drawing primitives and other support functions.
# URL: https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libsdl
name=sdl_gfx
version=2.0.26
release=1
source=(https://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-$version.tar.gz)
build() {
cd SDL_gfx-$version
# shipped configure was not regenerated since 2.0.25, resulting in bad soname
autoreconf -fvi
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}