diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-12-29 15:20:47 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-12-29 15:54:09 +0100 |
commit | cadc8824e093f37c36263b2aefba3cd680389f0b (patch) | |
tree | f25fec4782f585166b314e49b0c30577ecfe9694 /roles/_workstation/makepkg/meta | |
parent | 8ce56f15e0751870b56805010241dcfe8389b10f (diff) | |
download | rules-cadc8824e093f37c36263b2aefba3cd680389f0b.tar.gz |
feat(roles/_workstation): add makepkg role
Diffstat (limited to 'roles/_workstation/makepkg/meta')
-rw-r--r-- | roles/_workstation/makepkg/meta/main.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/roles/_workstation/makepkg/meta/main.yml b/roles/_workstation/makepkg/meta/main.yml new file mode 100644 index 0000000..07c1a64 --- /dev/null +++ b/roles/_workstation/makepkg/meta/main.yml @@ -0,0 +1,22 @@ +--- + +argument_specs: + main: + short_description: makepkg main entrypoint. + options: + makepkg_root_build_dir: + type: path + required: true + description: Local build directory + makepkg_package_name: + type: str + required: true + description: Package name (from the AUR) + makepkg_user: + type: str + required: true + description: User for building the package + makepkg_mirror_url: + type: str + required: true + description: Mirror url (usually the AUR) |