summaryrefslogtreecommitdiff
path: root/scripts/fetch-curl.sh
AgeCommit message (Collapse)Author
2025-04-28Use our own pax for extracting archivesMichael Forney
This reduces dependencies and variability in pax implementations.
2022-10-30Only apply patches ending in .patchMichael Forney
This way you can rename them to skip application.
2020-05-08Detect sha256 tool automaticallyMichael Forney
2020-05-08Detect decompression tool automaticallyMichael Forney
This fixes cross-compilation from macOS, whose bsdtar does support xz through liblzma, but does not have xz(1).
2020-04-19Address some shellcheck warningsMichael Forney
2020-04-15Use main compression tool instead of *cat variantsMichael Forney
2020-04-15Allow overriding sha256 command through SHA256SUMMichael Forney
This way, oasis can be bootstrapped on other operating systems by setting SHA256SUM='shasum -a 256'.
2019-03-11Allow overriding pax command with PAXREADMichael Forney
Most systems do not have pax installed by default, or it is not available at all. However, since we are relying on the -s flag for member name substitution, we can't just use a tar command that works everywhere. Instead, support the environment variable PAXREAD to specify the command to use in place of `pax -r`. Since bsdtar from libarchive supports -s, we can set PAXREAD='bsdtar -xf -'.
2018-02-16Port build scripts to POSIX shellMichael Forney
Since we are now using Lua to generate ninja files, use of rc in build scripts seems unnecessary and adds an additional bootstrap dependency. None of them are too fancy, so just port to POSIX sh instead.