summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--abs/core-testing/LinHES-system/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/abs/core-testing/LinHES-system/PKGBUILD b/abs/core-testing/LinHES-system/PKGBUILD
new file mode 100644
index 0000000..4a8cc25
--- /dev/null
+++ b/abs/core-testing/LinHES-system/PKGBUILD
@@ -0,0 +1,34 @@
+pkgname=LinHES-system
+pkgver=1.0
+pkgrel=3
+arch=('i686')
+MVDIR=$startdir/pkg/usr/LH
+BINDIR=$startdir/pkg/usr/bin
+install=LinHES.install
+pkgdesc="scripts and things related to having a automated system"
+depends=()
+
+binfiles="LinHES-start optimize_mythdb.py myth_mtc.py myth_mtc.sh"
+
+source=(LinHES-session LinHES-profile.sh $binfiles)
+
+build() {
+ cd $startdir/src
+ install -m755 -D LinHES-session $startdir/pkg/etc/X11/Sessions/LinHES
+ install -m755 -D LinHES-profile.sh $startdir/pkg/etc/profile.d/LinHES-profile.sh
+####### install to /usr/MythVantage/bin/
+#mkdir -p $BINDIR
+for i in $binfiles
+do
+ item=$i
+ install -m755 -D $item $MVDIR/bin/$item
+ echo $item
+# cd $BINDIR
+# pwd
+# ln -s ../MythVantage/bin/$i .
+# cd -
+done
+
+
+}
+