summaryrefslogtreecommitdiff
path: root/libre/sdl/PKGBUILD
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-02 18:54:59 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-02 18:54:59 -0300
commit9a32f5e3dc833908d4156d1912c30545fd063bcc (patch)
treead5587af53f00692fd4d27e0683dcf9d535200b6 /libre/sdl/PKGBUILD
parente71d0fb45478db6be56e55fe2913d50026f67a58 (diff)
sdl: remove libre suffix and add complex pkgrel
Diffstat (limited to 'libre/sdl/PKGBUILD')
-rw-r--r--libre/sdl/PKGBUILD67
1 files changed, 67 insertions, 0 deletions
diff --git a/libre/sdl/PKGBUILD b/libre/sdl/PKGBUILD
new file mode 100644
index 000000000..957598225
--- /dev/null
+++ b/libre/sdl/PKGBUILD
@@ -0,0 +1,67 @@
+# $Id: PKGBUILD 212210 2014-05-10 21:41:06Z heftig $
+# Maintainer (Arch): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+# Contributor (Arch): Allan McRae <allan@archlinux.org>
+# Contributor (Arch): dorphell <dorphell@archlinux.org>
+# Maintainer: André Silva <emulatorman@parabola.nu>
+# Maintainer: Márcio Silva <coadde@parabola.nu>
+# Maintainer (Connochaetos): Henry Jensen <hjensen@connochaetos.org>
+
+pkgname=sdl
+pkgver=1.2.15
+pkgrel=6.parabola1
+pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard, without nonfree riva_mmio.h file"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://www.libsdl.org"
+license=('LGPL')
+conflicts=('sdl-libre')
+replaces=('sdl-libre')
+depends=('glibc' 'libxext' 'libxrender' 'libx11')
+makedepends=('alsa-lib' 'mesa' 'libpulse' 'glu')
+optdepends=('alsa-lib: ALSA audio driver'
+ 'libpulse: PulseAudio audio driver')
+options=('staticlibs')
+mksource=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz
+ libre.patch)
+source=(https://repo.parabolagnulinux.org/other/${pkgname}-libre/SDL-libre-${pkgver}.tar.gz
+ sdl-1.2.14-fix-mouse-clicking.patch
+ sdl-1.2.14-disable-mmx.patch
+ fix_joystick_misc_axes.diff
+ libsdl-1.2.15-resizing.patch
+ sdl_x11sym.patch
+ X11_KeyToUnicode.patch)
+mkmd5sums=('9d96df8417572a2afb781a7c4c811a85'
+ '5c665f72b8a2adc97a91f6db6f2da79a')
+md5sums=('c6e53ef16fa347ed066c3d68fe93c378'
+ '04d8c179f125e04bcd4c9d60e013c2d7'
+ 'e5c16b7611f62c7cb25f0534eff68852'
+ '687586a108b597a2a6b73070c1d37e51'
+ '3dd50347d8856160a9cbd7f80383a1f8'
+ '148b285bccee9d21bb96db807363b962'
+ 'edea272dff4698470877c016d818918d')
+
+mksource() {
+ cd SDL-$pkgver
+ patch -Np0 -i ../libre.patch
+}
+
+prepare() {
+ cd SDL-$pkgver
+ patch -Np1 -i ../sdl-1.2.14-fix-mouse-clicking.patch
+ patch -Np1 -i ../sdl-1.2.14-disable-mmx.patch
+ patch -Np1 -i ../fix_joystick_misc_axes.diff
+ patch -Np1 -i ../libsdl-1.2.15-resizing.patch
+ patch -Np0 -i ../sdl_x11sym.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
+}