Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ktabata committed Apr 17, 2024
1 parent 0060f8a commit dc0a812
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@ This file is referred by some automatic release scripts.
.
.
.
.
30 changes: 10 additions & 20 deletions install-polaris-engine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,33 +40,23 @@ if [ ! -z "`echo $UNAME | grep Debian`" ]; then
fi
if [ ! -z "`echo $UNAME | grep FreeBSD`" ]; then
sudo pkg update;
sudo pkg install gmake gsed unzip alsa-lib alsa-plugins qt6 xorg cmake mesa-devel freetype2;
rm -f master.zip master.zip.*;
curl -O https://github.com/ktabata/polaris-engine/archive/refs/heads/master.zip;
rm -rf polaris-engine-master;
unzip master.zip;
rm master.zip;
cd polaris-engine-master;
make;
sudo make install;
sudo pkg install git gmake gsed unzip alsa-lib alsa-plugins qt6 xorg cmake mesa-devel freetype2;
git clone https://github.com/ktabata/polaris-engine;
cd polaris-engine;
gmake;
sudo gmake install;
cd ..;
rm -rf polaris-engine-master;
echo "";
echo "Please run 'polaris-engine'";
fi
if [ ! -z "`echo $UNAME | grep NetBSD`" ]; then
sudo pkg update;
sudo pkg install gmake gsed unzip alsa-lib alsa-plugins qt6 xorg cmake mesa-devel freetype2;
rm -f master.zip master.zip.*;
curl -O https://github.com/ktabata/polaris-engine/archive/refs/heads/master.zip;
rm -rf polaris-engine-master;
unzip master.zip;
rm master.zip;
cd polaris-engine-master;
make;
sudo make install;
sudo pkg install git gmake gsed unzip alsa-lib alsa-plugins qt6 xorg cmake mesa-devel freetype2;
git clone https://github.com/ktabata/polaris-engine;
cd polaris-engine;
gmake;
sudo gmake install;
cd ..;
rm -rf polaris-engine-master;
echo "";
echo "Please run 'polaris-engine'";
fi

0 comments on commit dc0a812

Please sign in to comment.