#!/bin/sh

MAKEDEPS="make libxml2"
DEPS=""

PKG_VER=1.14.1
SOURCE=https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-$PKG_VER.tar.xz
DESC="XML-XCB protocol descriptions"

build () {
    PYTHON=python3 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
}

package () {
    make DESTDIR=$PKG_DEST install 
}