1 # Maintainer: Mikael Eriksson <mikael_miffe_eriksson@yahoo.se>
6 pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard (mingw32)"
8 url="http://libsdl.org/"
10 depends=('mingw32-runtime')
11 makedepends=('mingw32-gcc' 'mingw32-w32api' 'mingw32-dx7-headers')
12 source=(http://libsdl.org/release/SDL-$pkgver.tar.gz)
13 options=(!strip !buildflags)
14 md5sums=('9d96df8417572a2afb781a7c4c811a85')
17 cd "$srcdir/SDL-$pkgver"
19 unset CFLAGS # Kill it with fire, !buildflags is not enough
21 ./configure --host=i486-mingw32 \
22 --prefix=/usr/i486-mingw32 \
24 --disable-stdio-redirect \
28 make DESTDIR="$pkgdir" install
31 # vim:set ts=2 sw=2 et: