first commit
This commit is contained in:
3
src/xcb-proto/.gitignore
vendored
Normal file
3
src/xcb-proto/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/xcb-proto/changes.md
Normal file
2
src/xcb-proto/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.16.0
|
||||
First version
|
17
src/xcb-proto/pkg.sh
Normal file
17
src/xcb-proto/pkg.sh
Normal file
@ -0,0 +1,17 @@
|
||||
NAME="xcb-proto"
|
||||
DESC="XML-XCB protocol descriptions that libxcb uses to generate the majority of its code and API"
|
||||
VERSION="1.16.0"
|
||||
FILES=("https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-$VERSION.tar.xz")
|
||||
HASHES=("92081b0faafd93f8262463c69829a482")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
PYTHON=python3 ./configure --prefix=/usr --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static
|
||||
make DESTDIR=$ROOTDIR install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user