blob: bf0e64abf454d44fab589eb39442a648dbcdc08a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
pkgname=mingw-w64-sdl2
pkgver=2.30.9
pkgrel=1
pkgdesc='A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard (Version 2) (mingw-w64)'
license=('MIT')
url='http://libsdl.org'
arch=('any')
_archs=('i686-w64-mingw32' 'x86_64-w64-mingw32')
depends=('mingw-w64-crt' 'sh')
makedepends=('mingw-w64-configure')
source=("${url}/release/SDL2-${pkgver}.tar.gz")
sha256sums=('24b574f71c87a763f50704bbb630cbe38298d544a1f890f099a4696b1d6beba4')
options=('!debug' '!buildflags' 'staticlibs' '!strip')
build() {
export MINGW_LDFLAGS="-s"
cd "${srcdir}/SDL2-${pkgver}"
for _arch in ${_archs[@]}; do
mkdir build-${_arch} -p
pushd build-${_arch}
${_arch}-configure
make
popd
done
}
package() {
cd "${srcdir}/SDL2-${pkgver}"
install -d "${pkgdir}"/usr/bin
for _arch in ${_archs[@]}; do
pushd build-${_arch}
make DESTDIR="${pkgdir}" install
find "${pkgdir}/usr/${_arch}/bin" -name "*.dll" -exec ${_arch}-strip --strip-unneeded {} \;
find "${pkgdir}/usr/${_arch}/lib" -name "*.a" -exec ${_arch}-strip -g {} \;
cp "${pkgdir}/usr/${_arch}/lib/libSDL2.a" "${pkgdir}/usr/${_arch}/lib/libSDL2-static.a"
ln -s "/usr/${_arch}/bin/sdl2-config" "${pkgdir}/usr/bin/${_arch}-sdl2-config"
popd
done
install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}
|