Added role make and added it to package-manager

This commit is contained in:
Kevin Veen-Birkenbach 2025-04-01 17:53:35 +02:00
parent 7a8a22a3a8
commit b488ea949f
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
6 changed files with 55 additions and 2 deletions

28
roles/make/README.md Normal file
View 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
View 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: []

View File

@ -0,0 +1,4 @@
- name: install make
pacman:
name: make
state: present

View File

@ -34,3 +34,4 @@ galaxy_info:
documentation: https://github.com/kevinveenbirkenbach/package-manager
dependencies:
- git
- make

View File

@ -1,2 +1,3 @@
dependencies:
- pc-git
- pc-git
- make

View File

@ -3,7 +3,6 @@
name:
- base-devel
- yay
- make
- gcc
- cmake
- fdupes