ansible-role--basesystem/tasks/development.yml

91 lines
1.4 KiB
YAML
Raw Normal View History

2015-12-27 18:48:21 +00:00
---
- name: "Installing development utils"
apt: >
name="{{item}}"
state=present
with_items:
2015-12-29 14:21:04 +00:00
- autoconf
- automake
- build-essential
- cmake
- configure-debian
- devscripts
- git-core
2015-12-27 18:48:21 +00:00
- git-flow
- hg-fast-export
2015-12-29 14:21:04 +00:00
- libtool
2015-12-27 18:48:21 +00:00
- meld
2015-12-29 14:21:04 +00:00
- mercurial
- opam
2015-12-27 18:48:21 +00:00
- screen
2015-12-29 14:21:04 +00:00
- subversion
2015-12-27 18:48:21 +00:00
- tmux
2015-12-29 14:21:04 +00:00
- vim
- vim-gtk
- xutils
2015-12-31 09:54:32 +00:00
- curl
- mercurial
- make
- binutils
- bison
- gcc
- clang
- name: "Installing php5 language"
apt: >
name="{{item}}"
state=present
with_items:
- virtualenv
- name: "Installing Rust language"
apt: >
name="{{item}}"
state=present
with_items:
- rustc
- rust-doc
- rust-gdb
- cargo
- name: "Installing Go language"
apt: >
name="{{item}}"
state=present
with_items:
- golang
- name: "Installing PHP language"
apt: >
name="{{item}}"
state=present
with_items:
- php5-apcu
- php5-cli
- php5-common
- php5-curl
- php5-gd
- php5-imagick
- php5-json
- php5-mcrypt
- php5-mysql
- php5-readline
- php5-tidy
- php5-xsl
2015-12-27 18:48:21 +00:00
- name: "Installing development libraries"
apt: >
name="{{item}}"
state=present
with_items:
2015-12-29 14:21:04 +00:00
- libdrm-dev
- libreadline-dev
- libssl-dev
2015-12-27 18:48:21 +00:00
- manpages-dev
2015-12-29 14:21:04 +00:00
- mesa-common-dev
2015-12-27 18:48:21 +00:00
- plasma-desktop-dev
2015-12-29 14:21:04 +00:00
- xorg-dev
2015-12-27 18:48:21 +00:00
- xserver-xorg-dev
2015-12-29 14:21:04 +00:00
- xutils-dev