2016-09-07 15:11:08 -06:00
|
|
|
import os
|
|
|
|
|
2016-09-03 18:38:47 -06:00
|
|
|
from invoke import task
|
|
|
|
|
|
|
|
from .util import RESOURCES_DIRECTORY
|
|
|
|
|
|
|
|
|
|
|
|
ARCH_PACKAGES = [
|
2016-09-07 15:11:08 -06:00
|
|
|
"lib32-alsa-lib", "synergy", "git", "adobe-source-code-pro-fonts", "pyenv",
|
|
|
|
"rbenv", "alsa-utils", "patch", "spotify", "google-chrome", "autoconf",
|
|
|
|
"automake", "cask", "emacs-git", "xmobar", "the_silver_searcher",
|
|
|
|
"jdk8-openjdk", "openjdk8-doc", "openjdk8-src", "scala", "clojure", "go",
|
|
|
|
"ruby", "node", "ghc", "rust", "nodejs", "nvm", "nvidia-settings",
|
|
|
|
"gnome-tweak-tool", "screenfetch", "htop", "tmux", "texlive-most",
|
2016-09-03 18:38:47 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def install_pacaur(ctx):
|
|
|
|
ctx.run(os.path.join(RESOURCES_DIRECTORY, "install_pacaur.sh"))
|