mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
distributable:
|
|
url: https://dlcdn.apache.org/apr/apr-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: apache/apr/tags
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
|
|
cd {{prefix}}/include
|
|
mv apr-{{version.major}}/* .
|
|
rmdir apr-{{version.major}}
|
|
ln -s . apr-{{version.major}}
|
|
|
|
cd ../bin
|
|
sed -i.bak "s_{{prefix}}_\$(cd \$(dirname \$0)/.. \&\& pwd)_g" apr-{{version.major}}-config
|
|
rm apr-{{version.major}}-config.bak
|
|
|
|
cd ../build-1
|
|
sed -i.bak \
|
|
-e "s_{{prefix}}_\$(subst /bin/apr-{{version.major}}-config,,\$(shell command -v apr-{{version.major}}-config))_g" \
|
|
-e "s_${TEA_PREFIX}_\$(subst /apache.org/apr/v{{version}}/bin/apr-{{version.major}}-config,,\$(shell command -v apr-{{version.major}}-config))_g" \
|
|
apr_rules.mk
|
|
rm apr_rules.mk.bak
|
|
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}}
|