This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add recipes for libxcb and its build deps.
- Thanks again to @jdreaver for the recipes. - libxcb, along with gstreamer, are the main new dependencies for qt5 on Linux.
- Loading branch information
1 parent
2e76606
commit 9db228b
Showing
6 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
./configure --prefix="$PREFIX" | ||
make | ||
make install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package: | ||
name: libxcb | ||
version: 1.11.1 | ||
|
||
source: | ||
fn: libxcb-1.11.1.tar.bz2 | ||
url: http://xcb.freedesktop.org/dist/libxcb-1.11.1.tar.bz2 | ||
md5: f97a65e6158775de518ac391935634c2 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- pthread-stubs | ||
- xcb-proto | ||
|
||
about: | ||
home: http://xcb.freedesktop.org/ | ||
license: MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
./configure --prefix="$PREFIX" | ||
make | ||
make install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package: | ||
name: pthread-stubs | ||
version: 0.1 | ||
|
||
source: | ||
fn: libpthread-stubs-0.1.tar.bz2 | ||
url: http://xcb.freedesktop.org/dist/libpthread-stubs-0.1.tar.bz2 | ||
md5: 774eabaf33440d534efe108ef9130a7d | ||
|
||
about: | ||
home: http://xcb.freedesktop.org/ | ||
license: MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
./configure --prefix="$PREFIX" | ||
make | ||
make install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package: | ||
name: xcb-proto | ||
version: 1.11 | ||
|
||
source: | ||
fn: xcb-proto-1.11.tar.bz2 | ||
url: http://xcb.freedesktop.org/dist/xcb-proto-1.11.tar.bz2 | ||
md5: 6bf2797445dc6d43e9e4707c082eff9c | ||
|
||
requirements: | ||
build: | ||
- python | ||
|
||
about: | ||
home: http://xcb.freedesktop.org/ | ||
license: MIT |