sheepy

build system (sheepy) and package manager (spm) for C
git clone https://spartatek.se/git/sheepy.git
Log | Files | Refs | README | LICENSE

installHaiku.sh (629B)


      1 #
      2 # build and install libsheepy
      3 # build and install sheepy
      4 # build and install spm
      5 #
      6 
      7 a=`pwd`
      8 cd ..
      9 git clone https://spartatek.se/git/libsheepy.git
     10 cd libsheepy
     11 git pull
     12 ./make.sh
     13 cd $a
     14 
     15 # configure and build sheepy
     16 gcc -o genMake genMake.c
     17 ./genMake
     18 rm genMake
     19 
     20 cd src
     21 ./compileSheepyHaiku.sh ~/libsheepy/release ~/libsheepy/release
     22 cp sheepy /boot/home/config/non-packaged/bin/
     23 
     24 echo "export LIBSHEEPY=/boot/home/libsheepy/release/" >> ~/.bashrc
     25 source ~/.bashrc
     26 
     27 ./compileSpm.sh
     28 cp spm /boot/home/config/non-packaged/bin/
     29 
     30 mkdir /boot/home/config/non-packaged/shpPackages
     31 
     32 # reset build scripts
     33 git checkout compileSheepy.sh