mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
667 B
Bash
23 lines
667 B
Bash
# $Id: PKGBUILD 51822 2009-09-12 07:01:31Z allan $
|
|
# 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"
|
|
arch=('i686' 'x86_64')
|
|
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
|
|
}
|