diff options
| author | Christian Rößler | 2013-08-22 17:56:03 +0200 |
|---|---|---|
| committer | Christian Rößler | 2013-08-22 17:56:03 +0200 |
| commit | 9c26c61430efdcd7d384c5e29be1523f9e129dbb (patch) | |
| tree | b51b3bc43c9f19e9d821a2110226597ef82f93d8 /remote/modules | |
| parent | [fileutil.inc] Introduced variable PACKET_HANDLER for simplification. (diff) | |
| parent | [plymouth-freiburg] fix wrong path in theming file for freiburg (diff) | |
| download | tm-scripts-9c26c61430efdcd7d384c5e29be1523f9e129dbb.tar.gz tm-scripts-9c26c61430efdcd7d384c5e29be1523f9e129dbb.tar.xz tm-scripts-9c26c61430efdcd7d384c5e29be1523f9e129dbb.zip | |
Merge branch 'master' of git.openslx.org:openslx-ng/tm-scripts
Diffstat (limited to 'remote/modules')
| -rw-r--r-- | remote/modules/plymouth/plymouth.build | 3 | ||||
| -rw-r--r-- | remote/modules/plymouth/plymouth.conf | 13 | ||||
| -rwxr-xr-x | remote/modules/vmplayer/data/addon-init | 5 |
3 files changed, 14 insertions, 7 deletions
diff --git a/remote/modules/plymouth/plymouth.build b/remote/modules/plymouth/plymouth.build index 1346f087..e46541f3 100644 --- a/remote/modules/plymouth/plymouth.build +++ b/remote/modules/plymouth/plymouth.build @@ -7,7 +7,8 @@ fetch_source() { build() { cd src/$VERSION pinfo "Running configure" - ./configure --enable-systemd-integration --disable-gtk --disable-static --prefix=""|| perror "failed." + + ./configure --enable-systemd-integration --disable-gtk --disable-static --prefix="$PREFIX"|| perror "failed." pinfo "Running make" make || perror "failed" pinfo "Running make install" diff --git a/remote/modules/plymouth/plymouth.conf b/remote/modules/plymouth/plymouth.conf index ec6f8571..d9acf6a3 100644 --- a/remote/modules/plymouth/plymouth.conf +++ b/remote/modules/plymouth/plymouth.conf @@ -1,14 +1,15 @@ VERSION=plymouth-0.8.6.1 URL=http://www.freedesktop.org/software/plymouth/releases/${VERSION}.tar.bz2 +PREFIX="/usr" REQUIRED_BINARIES=" plymouth plymouthd " REQUIRED_DIRECTORIES=" - /bin - /etc - /lib - /sbin - /var/lib - /var/spool + $PREFIX/bin + $PREFIX/etc + $PREFIX/lib + $PREFIX/sbin + $PREFIX/var/lib + $PREFIX/var/spool " diff --git a/remote/modules/vmplayer/data/addon-init b/remote/modules/vmplayer/data/addon-init new file mode 100755 index 00000000..01acb3b4 --- /dev/null +++ b/remote/modules/vmplayer/data/addon-init @@ -0,0 +1,5 @@ +#!/bin/sh + +systemctl daemon-reload +systemctl start vmware + |
