mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
parent
0191704872
commit
3b5dd5400e
1 changed files with 38 additions and 0 deletions
38
projects/x.org/xau/package.yml
Normal file
38
projects/x.org/xau/package.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
distributable:
|
||||
url: https://www.x.org/archive/individual/lib/libXau-{{version}}.tar.xz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
- 1.0.11
|
||||
|
||||
dependencies:
|
||||
x.org/util-macros: '*'
|
||||
x.org/protocol: '*'
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
tea.xyz/gx/make: '*'
|
||||
freedesktop.org/pkg-config: ~0.29
|
||||
script: |
|
||||
./configure \
|
||||
--prefix="{{prefix}}" \
|
||||
--sysconfdir="$SHELF"/etc \
|
||||
--localstatedir="$SHELF"/var
|
||||
make --jobs {{ hw.concurrency }} install
|
||||
env:
|
||||
SHELF: ${{tea.prefix}}/x.org
|
||||
|
||||
test:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
script: |
|
||||
mv $FIXTURE test.c
|
||||
cc test.c
|
||||
./a.out
|
||||
fixture: |
|
||||
#include "X11/Xauth.h"
|
||||
int main(int argc, char* argv[]) {
|
||||
Xauth auth;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue