mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
04a96fd3d3
* Revert "fix(xorg/protocol)" This reverts commit2c5953be32
. * Revert "fix(openvpn)" This reverts commitd56ab8d1ef
. * Revert "fix(x11)" This reverts commitc9bf2cd5cd
. * Revert "fix(libmd)[1]" This reverts commitb36124ab90
. * partial revert of `fix(libmd)` * partial revert of `fix(automake)`
49 lines
1 KiB
YAML
49 lines
1 KiB
YAML
|
|
distributable:
|
|
url: https://www.x.org/archive/individual/lib/libX11-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://www.x.org/archive/individual/lib/
|
|
match: /libX11-\d+\.\d+\.\d+.tar.gz/
|
|
strip:
|
|
- /libX11-/
|
|
- /.tar.gz/
|
|
|
|
dependencies:
|
|
x.org/xcb: ^1
|
|
x.org/protocol: '*'
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
freedesktop.org/pkg-config: ~0.29
|
|
x.org/util-macros: '*'
|
|
x.org/xtrans: ^1
|
|
gnu.org/sed: '*' # or build fails on macOS
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
SHELF: ${{tea.prefix}}/x.org
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
- --sysconfdir="$SHELF"/etc
|
|
- --localstatedir="$SHELF"/var
|
|
- --disable-debug
|
|
- --enable-unix-transport
|
|
- --enable-tcp-transport
|
|
- --enable-ipv6
|
|
- --enable-local-transport
|
|
- --enable-loadable-i18n
|
|
- --enable-xthreads
|
|
- --enable-specs=no
|
|
|
|
test:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
script: |
|
|
cc fixture.c -lX11
|
|
./a.out
|