summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-system/PKGBUILD
blob: 4e2a9528b94cdce413bcee24a704fd52494045d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
pkgname=LinHES-system
pkgver=1.0
pkgrel=5
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 LinHES-run"

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


}