18 lines
485 B
Plaintext
18 lines
485 B
Plaintext
# Description: A cross-platform networking library for SDL.
|
|
# URL: https://github.com/libsdl-org/SDL_net
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: libsdl
|
|
|
|
name=sdl_net
|
|
version=1.2.9
|
|
_commit=f5e3ef18937df3593c2d742ccfa89845ba13be4d
|
|
release=1
|
|
source=(https://github.com/libsdl-org/SDL_net/archive/$_commit/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd SDL_net-$_commit
|
|
./configure --prefix=/usr --enable-gui=no --disable-sdltest
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|