pantry/projects/hadrons.org/libmd/package.yml
Jacob Heider 04a96fd3d3
undo adding automake everywhere (#2210)
* Revert "fix(xorg/protocol)"

This reverts commit 2c5953be32.

* Revert "fix(openvpn)"

This reverts commit d56ab8d1ef.

* Revert "fix(x11)"

This reverts commit c9bf2cd5cd.

* Revert "fix(libmd)[1]"

This reverts commit b36124ab90.

* partial revert of `fix(libmd)`

* partial revert of `fix(automake)`
2023-06-16 13:07:05 -04:00

52 lines
1.2 KiB
YAML

distributable:
url: https://archive.hadrons.org/software/libmd/libmd-{{ version }}.tar.xz
strip-components: 1
versions:
github: guillemj/libmd/tags
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
gnu.org/patch: '*'
crates.io/semverator: '*'
script:
# Combats "error: aliases are not supported on darwin" on versions
# prior to 1.1.0.
- run: |
if semverator lt 1.1.0 {{version}}; then
patch -p1 <props/patch-symbol-alias.diff
fi
- ./configure --prefix={{prefix}}
- make --jobs {{hw.concurrency}} install
test:
dependencies:
tea.xyz/gx/cc: c99
script: |
mv $FIXTURE test.c
cc test.c -lmd -o test
test $(./test) = "900150983cd24fb0d6963f7d28e17f72"
fixture: |
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <md5.h>
int main() {
MD5_CTX ctx;
uint8_t results[MD5_DIGEST_LENGTH];
char *buf;
buf = "abc";
int n;
n = strlen(buf);
MD5Init(&ctx);
MD5Update(&ctx, (uint8_t *)buf, n);
MD5Final(results, &ctx);
for (n = 0; n < MD5_DIGEST_LENGTH; n++)
printf("%02x", results[n]);
putchar('\n');
return EXIT_SUCCESS;
}