mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
+x.org/xmu
This commit is contained in:
parent
baebab91b4
commit
50c39b548e
40
projects/x.org/xmu/package.yml
Normal file
40
projects/x.org/xmu/package.yml
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
distributable:
|
||||||
|
url: https://www.x.org/archive/individual/lib/libXmu-{{version}}.tar.xz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
versions:
|
||||||
|
- 1.1.4
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
x.org/exts: '*'
|
||||||
|
x.org/xt: '*'
|
||||||
|
|
||||||
|
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/Xlib.h"
|
||||||
|
#include "X11/Xmu/Xmu.h"
|
||||||
|
|
||||||
|
int main(int argc, char* argv[]) {
|
||||||
|
XmuArea area;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue