mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
666 B
Bash
22 lines
666 B
Bash
|
# Maintainer: Manuel Rotter <rotter.manuel@gmail.com>
|
||
|
|
||
|
pkgname=sdl
|
||
|
pkgver=1.2.13
|
||
|
pkgrel=1
|
||
|
pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard"
|
||
|
arch=('arm')
|
||
|
url="http://www.libsdl.org"
|
||
|
license=('LGPL')
|
||
|
depends=('glibc' 'libxext' 'libxrender' 'libx11')
|
||
|
makedepends=('alsa-lib' 'esound' 'mesa')
|
||
|
options=('!libtool')
|
||
|
source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz)
|
||
|
md5sums=('c6660feea2a6834de10bc71b2f8e4d88')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/SDL-${pkgver}
|
||
|
./configure --prefix=/usr --disable-nasm --enable-alsa --enable-esound --with-x --disable-rpath
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|