diff options
| author | Simon Rettberg | 2013-09-10 13:39:41 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2013-09-30 13:22:05 +0200 |
| commit | fa2cce43b27e7769797a9a4ffff88ee60de302e6 (patch) | |
| tree | ecde9abe8a738840af78ee570cf3c54eafa79a9c | |
| parent | [german] language-pack-de doesn't exist on debian (diff) | |
| download | tm-scripts-fa2cce43b27e7769797a9a4ffff88ee60de302e6.tar.gz tm-scripts-fa2cce43b27e7769797a9a4ffff88ee60de302e6.tar.xz tm-scripts-fa2cce43b27e7769797a9a4ffff88ee60de302e6.zip | |
[plymouth] Fix config variable naming
| -rw-r--r-- | remote/modules/plymouth/plymouth.build | 7 | ||||
| -rw-r--r-- | remote/modules/plymouth/plymouth.conf | 6 |
2 files changed, 6 insertions, 7 deletions
diff --git a/remote/modules/plymouth/plymouth.build b/remote/modules/plymouth/plymouth.build index e46541f3..67b7734e 100644 --- a/remote/modules/plymouth/plymouth.build +++ b/remote/modules/plymouth/plymouth.build @@ -1,14 +1,13 @@ #!/bin/bash fetch_source() { - download_untar "$URL" "src/" + download_untar "$REQUIRED_URL" "src/" } build() { - cd src/$VERSION + cd "src/$REQUIRED_VERSION" pinfo "Running configure" - - ./configure --enable-systemd-integration --disable-gtk --disable-static --prefix="$PREFIX"|| perror "failed." + ./configure --enable-systemd-integration --disable-gtk --disable-static --prefix="$REQUIRED_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 d9acf6a3..887d8ef6 100644 --- a/remote/modules/plymouth/plymouth.conf +++ b/remote/modules/plymouth/plymouth.conf @@ -1,6 +1,6 @@ -VERSION=plymouth-0.8.6.1 -URL=http://www.freedesktop.org/software/plymouth/releases/${VERSION}.tar.bz2 -PREFIX="/usr" +REQUIRED_VERSION=plymouth-0.8.6.1 +REQUIRED_URL=http://www.freedesktop.org/software/plymouth/releases/${VERSION}.tar.bz2 +REQUIRED_PREFIX="/usr" REQUIRED_BINARIES=" plymouth plymouthd |
