diff --git a/roles/make/README.md b/roles/make/README.md new file mode 100644 index 00000000..e160a171 --- /dev/null +++ b/roles/make/README.md @@ -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) diff --git a/roles/make/meta/main.yml b/roles/make/meta/main.yml new file mode 100644 index 00000000..de11ea63 --- /dev/null +++ b/roles/make/meta/main.yml @@ -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: [] \ No newline at end of file diff --git a/roles/make/tasks/main.yml b/roles/make/tasks/main.yml new file mode 100644 index 00000000..17e0bda7 --- /dev/null +++ b/roles/make/tasks/main.yml @@ -0,0 +1,4 @@ +- name: install make + pacman: + name: make + state: present \ No newline at end of file diff --git a/roles/package-manager/meta/main.yml b/roles/package-manager/meta/main.yml index d48e683a..f1ad8038 100644 --- a/roles/package-manager/meta/main.yml +++ b/roles/package-manager/meta/main.yml @@ -34,3 +34,4 @@ galaxy_info: documentation: https://github.com/kevinveenbirkenbach/package-manager dependencies: - git + - make diff --git a/roles/pc-administrator-tools/meta/main.yml b/roles/pc-administrator-tools/meta/main.yml index de668daa..5ef51ad9 100644 --- a/roles/pc-administrator-tools/meta/main.yml +++ b/roles/pc-administrator-tools/meta/main.yml @@ -1,2 +1,3 @@ dependencies: -- pc-git \ No newline at end of file +- pc-git +- make \ No newline at end of file diff --git a/roles/pc-administrator-tools/tasks/main.yml b/roles/pc-administrator-tools/tasks/main.yml index f17871c0..b24106de 100644 --- a/roles/pc-administrator-tools/tasks/main.yml +++ b/roles/pc-administrator-tools/tasks/main.yml @@ -3,7 +3,6 @@ name: - base-devel - yay - - make - gcc - cmake - fdupes