blob: ca0ba59c8b059c02208714dfa29673c23b2318d3 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
- name: copy TeX Live installer
copy:
src: install-tl-unx.tar.gz
dest: /tmp/install-tl-unx.tar.gz
- name: copy TeX Live installer profile
copy:
src: texlive.profile
dest: /tmp/texlive.profile
- name: unpack TeX Live installer
unarchive:
src: /tmp/install-tl-unx.tar.gz
dest: /tmp
copy: no
- name: install TeX Live via net installer
command: /tmp/install-tl-20160206/install-tl --profile=/tmp/texlive.profile
args:
chdir: /tmp/install-tl-20160206
- name: install additional TeX packages
command: tlmgr install capt-of framed multirow needspace threeparttable titlesec upquote wrapfig
# remove docs dir - this has no benefit for our use case and makes the
# container 500 MB bigger
- name: delete LaTeX docs
file:
path: /usr/local/texlive/2015/texmf-dist/doc
state: absent