sheepy

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

installOpenIndiana.sh (429B)


      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 ./makeOpenIndiana.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 ./compileSheepy.sh /usr/lib /usr/include
     22 cp sheepy /usr/bin/
     23 ./compileSpm.sh
     24 cp spm /usr/bin/
     25 
     26 # reset build scripts
     27 git checkout compileSheepy.sh