autopkg / hansen-m-recipes

My recipes for Autopkg - https://github.com/autopkg
27 stars 50 forks source link

Universal installer support for VueScan #218

Closed jazzace closed 2 years ago

jazzace commented 2 years ago

The current VueScan recipe downloads the Intel app (32-bit or 64-bit, depending on the value of ARCH). Hamrick now offers a Universal installer. I am suggesting that the recipe be simplified by eliminating the ARCH option and always downloading the Universal app. Alternately, you could change the code to require that ARCH be set to one of a64 (ARM/Universal), x64 (Intel 64-bit), or x32 (Intel 32-bit) and alter the download string accordingly, but that would break all existing overrides for the "benefit" of being able to get the 32-bit version automatically (hence the choice made in this PR).

rustymyers commented 2 years ago

Thanks!