20 lines
337 B
Bash
Executable file
20 lines
337 B
Bash
Executable file
#!/bin/rc
|
|
|
|
iflags=(win3 win95 simple flat)
|
|
en=simple #enable
|
|
src='git://shithub.us/aap/lola'
|
|
builddir=/tmp/lola
|
|
name=lola
|
|
|
|
git/clone $src $builddir || exit 1
|
|
into $builddir
|
|
if(! ~ $#en 1){
|
|
echo $name: what are you doing? >[1=2]
|
|
exit 1
|
|
}
|
|
sed s/simple/$en/g mkfile >mkfile2
|
|
mv mkfile2 mkfile
|
|
mk
|
|
mk install
|
|
back
|
|
rm -fr $builddir #ruh roh
|