Skip to content

Commit

Permalink
gettingStartedDebian script for redhat
Browse files Browse the repository at this point in the history
  • Loading branch information
freakout42 committed Oct 6, 2024
1 parent f3b8a66 commit 7b6191f
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions docs/gettingStartedDebian
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
#!/bin/sh
if ! bison --version; then
sudo apt-get -y update
sudo apt-get -y install build-essential
sudo apt-get -y install python
sudo apt-get -y install unixodbc
sudo apt-get -y install libsqliteodbc
sudo apt-get -y install libncurses5-dev
sudo apt-get -y install flex
if [ -f /etc/redhat-release ]; then
sudo yum -y update
sudo yum -y group install "Development Tools"
sudo yum -y install python3
sudo yum -y install unixODBC
sudo yum -y install unixODBC-devel
sudo yum -y install ncurses-devel
sudo yum -y install sqlite
rpm -i https://github.com/freakout42/formax/releases/download/v0.9.9/sqliteodbc-0.9998-1.x86_64.rpm
else
sudo apt-get -y update
sudo apt-get -y install build-essential
sudo apt-get -y install python
sudo apt-get -y install unixodbc
sudo apt-get -y install libsqliteodbc
sudo apt-get -y install libncurses5-dev
sudo apt-get -y install flex
fi
fi
./configure clean
./configure
Expand Down

0 comments on commit 7b6191f

Please sign in to comment.