15 lines
312 B
Python
15 lines
312 B
Python
from invoke import task
|
|
|
|
from .util import RESOURCES_DIRECTORY
|
|
|
|
|
|
ARCH_PACKAGES = [
|
|
"synergy", "pyenv", "rbenv", "alsa-utils", "spotify", "google-chrome",
|
|
"autoconf", "automake", "cask", "emacs25-git",
|
|
]
|
|
|
|
|
|
@task
|
|
def install_pacaur(ctx):
|
|
ctx.run(os.path.join(RESOURCES_DIRECTORY, "install_pacaur.sh"))
|