mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 10:25:05 +03:00
+x.org/xrender
This commit is contained in:
parent
346a32f703
commit
4b95ae947d
2 changed files with 39 additions and 2 deletions
|
@ -13,8 +13,6 @@ build:
|
|||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
tea.xyz/gx/make: '*'
|
||||
# ^^ often packages need dependencies to build, it is very common for
|
||||
# packages to need a C compiler and make, the above provide those
|
||||
script: |
|
||||
./configure \
|
||||
--prefix="{{prefix}}" \
|
||||
|
|
39
projects/x.org/xrender/package.yml
Normal file
39
projects/x.org/xrender/package.yml
Normal file
|
@ -0,0 +1,39 @@
|
|||
distributable:
|
||||
url: https://www.x.org/archive/individual/lib/libXrender-{{version}}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
- 0.9.11
|
||||
|
||||
dependencies:
|
||||
x.org/x11: ^1
|
||||
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 x.c
|
||||
cc x.c
|
||||
./a.out
|
||||
fixture: |
|
||||
#include <X11/Xlib.h>
|
||||
#include <X11/extensions/Xrender.h>
|
||||
int main(int argc, char* argv[]) {
|
||||
XRenderColor color;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue