mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-05 16:44:16 +02:00
Added role make and added it to package-manager
This commit is contained in:
parent
7a8a22a3a8
commit
b488ea949f
28
roles/make/README.md
Normal file
28
roles/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/make/meta/main.yml
Normal file
20
roles/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/make/tasks/main.yml
Normal file
4
roles/make/tasks/main.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
- name: install make
|
||||||
|
pacman:
|
||||||
|
name: make
|
||||||
|
state: present
|
@ -34,3 +34,4 @@ galaxy_info:
|
|||||||
documentation: https://github.com/kevinveenbirkenbach/package-manager
|
documentation: https://github.com/kevinveenbirkenbach/package-manager
|
||||||
dependencies:
|
dependencies:
|
||||||
- git
|
- git
|
||||||
|
- make
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
- pc-git
|
- pc-git
|
||||||
|
- make
|
@ -3,7 +3,6 @@
|
|||||||
name:
|
name:
|
||||||
- base-devel
|
- base-devel
|
||||||
- yay
|
- yay
|
||||||
- make
|
|
||||||
- gcc
|
- gcc
|
||||||
- cmake
|
- cmake
|
||||||
- fdupes
|
- fdupes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user