contrib/sdl2_net/Pkgfile

20 lines
465 B
Plaintext
Raw Normal View History

2019-04-13 10:41:04 +02:00
# Description: A cross-platform networking library for SDL2.
# URL: https://www.libsdl.org/projects/SDL_net/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libsdl2
name=sdl2_net
2022-08-20 18:17:51 +02:00
version=2.2.0
2019-04-13 10:41:04 +02:00
release=1
source=(https://www.libsdl.org/projects/SDL_net/release/SDL2_net-$version.tar.gz)
build() {
cd SDL2_net-$version
2022-08-20 18:17:51 +02:00
./configure --prefix=/usr \
--disable-examples \
--disable-static \
--disable-sdltest
2019-04-13 10:41:04 +02:00
make
make DESTDIR=$PKG install
}