Files
alire-index-community/index/ma/make/make-external.toml
T
Alejandro R Mosteo 408bf8e9cf Detect make from version output (#148)
* Detect make from version output

This way it is available even in platforms without package manager (macOS).

* Code review (case expression)
2020-09-08 19:15:26 +02:00

15 lines
344 B
TOML

description = "Utility for directing compilation"
name = "make"
licenses = []
maintainers = ["alejandro@mosteo.com"]
maintainers-logins = ["mosteo"]
[[external]]
kind = "system"
origin."case(distribution)"."..." = ["make"]
[[external]]
kind = "version-output"
version-command = [ "make", "--version" ]
version-regexp = ".*Make ([\\d\\.]+).*"