PKGBUILDs/extra/sdl_net/PKGBUILD

23 lines
606 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=sdl_net
pkgver=1.2.7
pkgrel=3
pkgdesc="A small sample cross-platform networking library"
2009-12-07 20:25:36 +00:00
arch=('arm')
2009-10-10 02:23:22 +00:00
url="http://www.libsdl.org/projects/SDL_net/"
license=('GPL')
depends=('sdl')
options=('!libtool')
source=(http://www.libsdl.org/projects/SDL_net/release/SDL_net-${pkgver}.tar.gz)
md5sums=('6bd4662d1423810f3140d4da21b6d912')
build() {
cd ${srcdir}/SDL_net-${pkgver}
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
}