mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
666 B
Bash
21 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
|
|
}
|