-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add alephone * Update vcpkg.json * Update vcpkg.json * Update vcpkg.json * Update vcpkg.json * Fixes * fixes * Update build.sh * Update build.sh * Update run-alephone.sh
- Loading branch information
Showing
5 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
LD_LIBRARY_PATH="lib:$LD_LIBRARY_PATH" ./alephone "$PWD" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
sudo apt-get -y install autoconf-archive | ||
|
||
export CXXFLAGS=-I"$VCPKG_INSTALLED_PATH"/include | ||
export CFLAGS=-I"$VCPKG_INSTALLED_PATH"/include | ||
export LDFLAGS=-L"$VCPKG_INSTALLED_PATH/lib" | ||
export LIBRARY_PATH="$VCPKG_INSTALLED_PATH/lib" | ||
|
||
# CLONE PHASE | ||
git clone https://github.com/Aleph-One-Marathon/alephone.git source | ||
pushd source | ||
git checkout -f "$COMMIT_TAG" | ||
git submodule update --init --recursive | ||
popd | ||
|
||
# BUILD PHASE | ||
pushd source | ||
autoreconf -i | ||
./configure --with-boost-libdir="$VCPKG_INSTALLED_PATH/lib" | ||
make | ||
popd | ||
|
||
# COPY PHASE | ||
cp -rfv assets/* "$diststart/2398450/dist/" | ||
cp -rfv source/Source_Files/alephone "$diststart/2398450/dist/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"STEAM_APP_ID_LIST": [ | ||
"2398450" | ||
], | ||
"LICENSE_PATH": "./source/COPYING", | ||
"APT_LIBRARIES": [ | ||
"nasm", | ||
"libboost-dev" | ||
], | ||
"COMMIT_TAG": "release-20240510" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", | ||
"dependencies":[ | ||
{ | ||
"name":"boost-algorithm" | ||
}, | ||
{ | ||
"name":"boost-uuid" | ||
}, | ||
{ | ||
"name":"boost-property-tree" | ||
}, | ||
{ | ||
"name":"boost-iostreams", | ||
"default-features":false | ||
}, | ||
{ | ||
"name":"boost-filesystem" | ||
}, | ||
{ | ||
"name":"boost-lockfree" | ||
}, | ||
{ | ||
"name":"boost-dll" | ||
}, | ||
{ | ||
"name":"boost-system" | ||
}, | ||
{ | ||
"name":"sdl2-net" | ||
}, | ||
{ | ||
"name":"sdl2-ttf" | ||
}, | ||
{ | ||
"name":"zziplib" | ||
}, | ||
{ | ||
"name":"ffmpeg", | ||
"features":[ | ||
"vorbis", | ||
"vpx" | ||
] | ||
}, | ||
{ | ||
"name":"nativefiledialog" | ||
}, | ||
{ | ||
"name":"libsndfile" | ||
}, | ||
{ | ||
"name":"openal-soft" | ||
}, | ||
{ | ||
"name":"catch2" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters