10 lines
239 B
Text
10 lines
239 B
Text
|
#!/usr/bin/env sh
|
||
|
# -*- mode: scheme; -*-
|
||
|
IFS=" "
|
||
|
exec scsh -e main -s "$0" "$@"
|
||
|
!#
|
||
|
(define (main args)
|
||
|
(run (git clone --depth 1 https://code.ryuslash.org/ryuslash/laminar-config.git))
|
||
|
(with-cwd "laminar-config"
|
||
|
(run (makepkg))))
|