pantry/projects/apache.org/apr/package.yml

40 lines
796 B
YAML
Raw Normal View History

2023-03-16 21:33:29 +03:00
distributable:
url: https://dlcdn.apache.org/apr/apr-{{version}}.tar.gz
2023-03-16 21:33:29 +03:00
strip-components: 1
versions:
github: apache/apr/tags
2023-03-16 21:33:29 +03:00
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script: |
./configure $ARGS
2023-04-05 06:21:55 +03:00
make --jobs {{ hw.concurrency }}
make install
2023-04-12 00:51:36 +03:00
cd {{prefix}}/include
mv apr-{{version.major}}/* .
rmdir apr-{{version.major}}
ln -s . apr-{{version.major}}
2023-03-16 21:33:29 +03:00
env:
# add any environment variables here
ARGS:
- --prefix="{{prefix}}"
- --disable-debug
test:
dependencies:
tea.xyz/gx/cc: c99
fixture: |
#include <stdio.h>
#include <apr-1/apr_version.h>
int main() {
printf("%s", apr_version_string());
return 0;
}
script: |
mv $FIXTURE b.c
cc b.c -lapr-{{version.major}}