2008-02-11 21:46:31 +11:00
|
|
|
# Description: A cross-platform networking library for SDL.
|
2023-03-03 12:25:18 -05:00
|
|
|
# URL: https://github.com/libsdl-org/SDL_net
|
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
2008-02-11 21:46:31 +11:00
|
|
|
# Depends on: libsdl
|
|
|
|
|
|
|
|
name=sdl_net
|
2020-05-31 22:14:57 +10:00
|
|
|
version=1.2.8
|
2008-02-11 21:46:31 +11:00
|
|
|
release=1
|
2023-03-03 12:25:18 -05:00
|
|
|
source=(https://github.com/libsdl-org/SDL_net/archive/refs/tags/release-$version.tar.gz)
|
|
|
|
renames=($name-release-$version.tar.gz)
|
2008-02-11 21:46:31 +11:00
|
|
|
|
|
|
|
build() {
|
2023-03-03 12:25:18 -05:00
|
|
|
cd SDL_net-release-$version
|
|
|
|
./configure --prefix=/usr --enable-gui=no --disable-sdltest
|
2008-02-11 21:46:31 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|
|
|
|
|