pantry/projects/libexif.github.io/package.yml
Marc Seitz 6a30c3a3aa
+libexif (#753)
Co-authored-by: Jacob Heider <jacob@tea.xyz>
2023-03-14 17:55:29 -04:00

47 lines
1.2 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

distributable:
url: https://github.com/libexif/libexif/releases/download/v0.6.24/libexif-0.6.24.tar.bz2
strip-components: 1
# if theres a github then we can parse the versions
versions:
github: libexif/libexif/tags # reads github tags from github
strip: /^v/
dependencies:
gnu.org/gettext: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script: |
./configure $ARGS
make --jobs {{ hw.concurrency }}
make install
env:
# add any environment variables here
ARGS:
- --prefix="{{prefix}}"
- --disable-dependency-tracking
test:
fixture: |
#include <stdio.h>
#include <libexif/exif-loader.h>
int main(int argc, char **argv) {
ExifLoader *loader = exif_loader_new();
ExifData *data;
if (loader) {
exif_loader_write_file(loader, argv[1]);
data = exif_loader_get_data(loader);
printf(data ? "Exif data loaded" : "No Exif data");
}
}
dependencies:
tea.xyz/gx/cc: c99
gnu.org/wget: '*'
script: |
wget https://samplelib.com/lib/preview/jpeg/sample-clouds-400x300.jpg -O sample.jpg
mv $FIXTURE fixture.c
cc fixture.c -lexif
./a.out sample.jpg