mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
e5c9014fff
* modified: projects/apache.org/apr-util/package.yml * new file: projects/apache.org/httpd/package.yml * modified: projects/apache.org/apr-util/package.yml * modified: projects/apache.org/httpd/package.yml * make without -j * Update package.yml * modified: projects/apache.org/httpd/package.yml
32 lines
686 B
YAML
32 lines
686 B
YAML
distributable:
|
|
url: https://dlcdn.apache.org/apr/apr-util-{{ version }}.tar.bz2
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: apache/apr-util/tags
|
|
|
|
provides:
|
|
- bin/apu-{{ version.major }}-config
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
apache.org/apr: '*'
|
|
openssl.org: '*'
|
|
libexpat.github.io: '*'
|
|
sqlite.org: '*'
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{ prefix }}"
|
|
- --with-apr="{{ deps.apache.org/apr.prefix }}"
|
|
- --includedir="{{prefix}}/include"
|
|
|
|
test:
|
|
script: |
|
|
test "$(apu-{{ version.major }}-config --version)" = "{{ version }}"
|