mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:14:36 +08:00
66 lines
2.4 KiB
Bash
66 lines
2.4 KiB
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/sdl
|
|
|
|
pkgname=sdl
|
|
pkgver=1.2.15
|
|
pkgrel=4
|
|
pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard"
|
|
arch=('x86_64')
|
|
url="http://www.libsdl.org"
|
|
license=('LGPL')
|
|
depends=('glibc' 'libxext' 'libxrender' 'libx11')
|
|
makedepends=('alsa-lib' 'mesa' 'libpulse' 'glu')
|
|
optdepends=('alsa-lib: ALSA audio driver'
|
|
'libpulse: PulseAudio audio driver')
|
|
options=('staticlibs')
|
|
source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz
|
|
SDL-1.2.10-GrabNotViewable.patch
|
|
SDL-1.2.15-SDL_EnableUNICODE_drops_keyboard_events.patch
|
|
SDL-1.2.15-const_XData32.patch
|
|
SDL-1.2.15-ignore_insane_joystick_axis.patch
|
|
SDL-1.2.15-no-default-backing-store.patch
|
|
SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch
|
|
sdl-1.2.14-fix-mouse-clicking.patch
|
|
sdl-1.2.14-disable-mmx.patch
|
|
libsdl-1.2.15-resizing.patch
|
|
X11_KeyToUnicode.patch)
|
|
md5sums=('9d96df8417572a2afb781a7c4c811a85'
|
|
'37ad001a4d2ff924a5fab356b49f8a78'
|
|
'513840e76b6b4fab80e06c9cdbc2a641'
|
|
'303bd7481693415029f7d9f4a730d735'
|
|
'e382e5b7449e95969c5ba4084b0aab39'
|
|
'1b0578c76453813eb4eaf0125ce242db'
|
|
'321377e38e2db7f1baf43c392e165dd5'
|
|
'd79137e6bdadf21ff2f716590e9709ac'
|
|
'a19dabb85729fab36f2662e9e273a4d9'
|
|
'3dd50347d8856160a9cbd7f80383a1f8'
|
|
'edea272dff4698470877c016d818918d')
|
|
|
|
prepare() {
|
|
cd SDL-$pkgver
|
|
patch -Np1 -i ../SDL-1.2.10-GrabNotViewable.patch
|
|
patch -Np1 -i ../SDL-1.2.15-SDL_EnableUNICODE_drops_keyboard_events.patch
|
|
patch -Np1 -i ../SDL-1.2.15-const_XData32.patch
|
|
patch -Np1 -i ../SDL-1.2.15-ignore_insane_joystick_axis.patch
|
|
patch -Np1 -i ../SDL-1.2.15-no-default-backing-store.patch
|
|
|
|
# https://bugs.freedesktop.org/show_bug.cgi?id=27222
|
|
patch -Np1 -i ../SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch
|
|
|
|
patch -Np1 -i ../sdl-1.2.14-fix-mouse-clicking.patch
|
|
patch -Np1 -i ../sdl-1.2.14-disable-mmx.patch
|
|
patch -Np1 -i ../libsdl-1.2.15-resizing.patch
|
|
patch -Np1 -i ../X11_KeyToUnicode.patch
|
|
}
|
|
|
|
build() {
|
|
cd SDL-$pkgver
|
|
./configure --prefix=/usr --disable-nasm --enable-alsa \
|
|
--with-x --disable-rpath --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd SDL-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|