CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libsdl: initial import (verified compilation)
[attic/ports/opt-cross.git] / libsdl / Pkgfile
1 # Description: SDL Simple DirectMedia Layer
2 # URL: http://www.libsdl.org
3 # Packager: sten nick dot steeves at shaw dot ca
4 # Maintainer: Jose V Beneyto sepen at crux dot nu
5 # Depends on:
6
7 name=libsdl
8 version=1.2.14
9 release=1
10 source=(http://www.libsdl.org/release/SDL-$version.tar.gz)
11
12 build () {
13 cd SDL-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --enable-alsa \
19 --mandir=/usr/man
20
21 make
22 make DESTDIR=$PKG install
23 }