diff --git a/.gitignore b/.gitignore index 2e04bce..511c2c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -cowtool +./cowtool diff --git a/structure/cowtool/disabled/.keep b/structure/cowtool/disabled/.keep new file mode 100644 index 0000000..e69de29 diff --git a/structure/cowtool/enabled/.keep b/structure/cowtool/enabled/.keep new file mode 100644 index 0000000..e69de29 diff --git a/structure/cowtool/install_template.sh b/structure/cowtool/install_template.sh new file mode 100644 index 0000000..98f81b2 --- /dev/null +++ b/structure/cowtool/install_template.sh @@ -0,0 +1,37 @@ + + +### This is the template bash file used by cowtool ### + + +### Prep ### +startdir=$(pwd) + + +### Entering workspace ### +echo "Entering workspace..." +mkdir /sources/cowtool/buildspace +cd /sources/cowtool/buildspace + + +### Obtaining package source ### +echo "Fetching source..." +git clone + +### Entering source ### +echo "Entering source..." +cd + +### Building package ### +echo "Building package..." +make + +### Installing package ### +echo "Installing package..." +make install + +### Cleaning up ### +echo "Cleaning up..." +cd $startdir +rm -rf /sources/cowtool/buildspace/ + +