2023-03-16 21:33:29 +03:00
|
|
|
distributable:
|
2023-04-08 07:54:33 +03:00
|
|
|
url: https://dlcdn.apache.org/apr/apr-{{version}}.tar.gz
|
2023-03-16 21:33:29 +03:00
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
2023-04-08 07:54:33 +03:00
|
|
|
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-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}}
|