This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pump version to 0.0.5 to test deployment
- Loading branch information
Showing
3 changed files
with
30 additions
and
9 deletions.
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
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,18 @@ | ||
#!/bin/sh | ||
if [ ! -d openal-soft ] | ||
then | ||
yum install -y git cmake \ | ||
alsa-lib-devel pulseaudio-libs-devel jack-audio-connection-kit-devel \ | ||
libvorbis-devel opusfile-devel libsndfile-devel | ||
pip install cmake>=3 | ||
git clone https://github.com/kcat/openal-soft | ||
cd openal-soft/build | ||
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .. | ||
cmake --build . --parallel `nproc` --target install --config Release | ||
git clone https://github.com/kcat/alure | ||
mkdir alure/build | ||
cd alure/build | ||
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .. | ||
cmake --build . --parallel `nproc` --target install --config Release | ||
pip uninstall -y cmake | ||
fi |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = palace | ||
version = 0.0.3 | ||
version = 0.0.5 | ||
url = https://github.com/McSinyx/palace | ||
author = Nguyễn Gia Phong | ||
author_email = [email protected] | ||
|