From 83166d8e62fadce595cd99e1c874da3d4169b20a Mon Sep 17 00:00:00 2001 From: COW_ILLUMINATI Date: Tue, 28 May 2024 11:44:09 -0400 Subject: [PATCH] Fixed empty folders --- .gitignore | 2 +- structure/cowtool/disabled/.keep | 0 structure/cowtool/enabled/.keep | 0 structure/cowtool/install_template.sh | 37 +++++++++++++++++++++++++++ 4 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 structure/cowtool/disabled/.keep create mode 100644 structure/cowtool/enabled/.keep create mode 100644 structure/cowtool/install_template.sh 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/ + +