mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Shorted generic- to gen-
This commit is contained in:
28
roles/gen-make/README.md
Normal file
28
roles/gen-make/README.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# Make Installation
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role installs GNU Make on Arch Linux systems using the Pacman package manager. GNU Make is a build automation tool that automatically builds executable programs and libraries from source code by reading files called Makefiles.
|
||||
|
||||
Learn more about GNU Make on the [GNU Make Homepage](https://www.gnu.org/software/make/).
|
||||
|
||||
## Overview
|
||||
|
||||
This role ensures that GNU Make is installed on the target system. It is intended for environments where automated build processes or custom software compilation are required.
|
||||
|
||||
## Purpose
|
||||
|
||||
The purpose of this role is to provide an automated, idempotent installation of GNU Make, ensuring that the tool is available system-wide for building software. It is ideal for developers and system administrators who require a reliable build system.
|
||||
|
||||
## Features
|
||||
|
||||
- **Installs GNU Make:** Uses Pacman to install the `make` package.
|
||||
- **Idempotent Execution:** Ensures that Make is installed only once.
|
||||
- **System-Wide Availability:** Makes GNU Make available for all users on the system.
|
||||
|
||||
## Credits 📝
|
||||
|
||||
Developed and maintained by **Kevin Veen-Birkenbach**.
|
||||
Learn more at [www.veen.world](https://www.veen.world)
|
||||
|
||||
License: [CyMaIS NonCommercial License (CNCL)](https://s.veen.world/cncl)
|
20
roles/gen-make/meta/main.yml
Normal file
20
roles/gen-make/meta/main.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Installs GNU Make using the Pacman package manager on Arch Linux systems."
|
||||
license: "CyMaIS NonCommercial License (CNCL)"
|
||||
license_url: "https://s.veen.world/cncl"
|
||||
company: |
|
||||
Kevin Veen-Birkenbach
|
||||
Consulting & Coaching Solutions
|
||||
https://www.veen.world
|
||||
min_ansible_version: "2.9"
|
||||
platforms:
|
||||
- name: Archlinux
|
||||
versions:
|
||||
- rolling
|
||||
galaxy_tags:
|
||||
- make
|
||||
- build
|
||||
- automation
|
||||
- archlinux
|
||||
dependencies: []
|
4
roles/gen-make/tasks/main.yml
Normal file
4
roles/gen-make/tasks/main.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
- name: install make
|
||||
pacman:
|
||||
name: make
|
||||
state: present
|
Reference in New Issue
Block a user