diff options
Diffstat (limited to 'kde-build.sh')
-rw-r--r-- | kde-build.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/kde-build.sh b/kde-build.sh new file mode 100644 index 0000000000..6ca6165e61 --- /dev/null +++ b/kde-build.sh @@ -0,0 +1,16 @@ +#!bash +# +# Copyright © 2016-2019 Hartmut Goebel <h.goebel@crazy-compilers.com> +# License: GPLv3 + + +build () { + WHICH=$1 ; shift + ./pre-inst-env guix package -A | grep $WHICH | \ + cut -f 1 | xargs ./pre-inst-env guix build -K "$@" +} + +#build /qt.scm --fallback +build /kde-frameworks.scm --fallback +#build /kde.scm --fallback +build /kde-plasma.scm --fallback |