sdl_net: 1.2.8 -> 1.2.9

This commit is contained in:
John McQuah 2023-10-15 11:26:23 +00:00
parent c7f73d17db
commit 85cff98f1e
3 changed files with 14 additions and 15 deletions

View File

@ -3,10 +3,10 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/SDL/
-rw-r--r-- root/root usr/include/SDL/SDL_net.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libSDL_net-1.2.so.0 -> libSDL_net-1.2.so.0.8.0
-rwxr-xr-x root/root usr/lib/libSDL_net-1.2.so.0.8.0
lrwxrwxrwx root/root usr/lib/libSDL_net-1.2.so.0 -> libSDL_net-1.2.so.0.8.1
-rwxr-xr-x root/root usr/lib/libSDL_net-1.2.so.0.8.1
-rw-r--r-- root/root usr/lib/libSDL_net.a
-rwxr-xr-x root/root usr/lib/libSDL_net.la
lrwxrwxrwx root/root usr/lib/libSDL_net.so -> libSDL_net-1.2.so.0.8.0
lrwxrwxrwx root/root usr/lib/libSDL_net.so -> libSDL_net-1.2.so.0.8.1
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/SDL_net.pc

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3y+oX+hlz1q6O+Dx5lS8I2y5V9srQNwMHz1LYlHIad70fcxCzwaIK1oPDXHw98lkxPO/g2/zRuFs8yhow5cp2gI=
SHA256 (Pkgfile) = df14c43261b4955fbd446d6278b078094f1b55f26e0a0d2f9bda170757fcea70
SHA256 (.footprint) = ca946ec5219bbf20c3adc9e134db35490ce49eba061ce44107c8d98d83255c38
SHA256 (sdl_net-release-1.2.8.tar.gz) = d6780896b5e78b74932bc31bd67e714ed990531028ad350ed6d6bbba8b2bf324
RWSagIOpLGJF3yYXdycxX5Lu1AUL2V0atWohRgnr+M8drpdMiMK3DE1d/0giu6s+Sn031D2ncgH5cToF2e0fAOCnF0LRafLKggA=
SHA256 (Pkgfile) = 3a1293b399b3daf7905efbf0a97b03847ed0d40e8c760d030a8a49b1f071b62d
SHA256 (.footprint) = 17cfb4ed9a666a0c8badbce0718b001a72fd8b781255b4339de51726452603da
SHA256 (sdl_net-1.2.9.tar.gz) = 3a08d903896c9d7ce0715be7a8402b02a8bc3bb6b87e43a1b8b58cfdfc38752e

View File

@ -4,15 +4,14 @@
# Depends on: libsdl
name=sdl_net
version=1.2.8
version=1.2.9
_commit=f5e3ef18937df3593c2d742ccfa89845ba13be4d
release=1
source=(https://github.com/libsdl-org/SDL_net/archive/refs/tags/release-$version.tar.gz)
renames=($name-release-$version.tar.gz)
source=(https://github.com/libsdl-org/SDL_net/archive/$_commit/$name-$version.tar.gz)
build() {
cd SDL_net-release-$version
./configure --prefix=/usr --enable-gui=no --disable-sdltest
make
make DESTDIR=$PKG install
cd SDL_net-$_commit
./configure --prefix=/usr --enable-gui=no --disable-sdltest
make
make DESTDIR=$PKG install
}