From 0f7fc864d98d3e8a852d3a6a835ae3331fde1bad Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 30 Mar 2020 23:00:12 -0400 Subject: Current state --- libxcb/build.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 libxcb/build.sh (limited to 'libxcb') diff --git a/libxcb/build.sh b/libxcb/build.sh new file mode 100644 index 0000000..01c4043 --- /dev/null +++ b/libxcb/build.sh @@ -0,0 +1,30 @@ +#!/bin/bash +name=libxcb +version=1.14 +revision=0 +sources=( + "https://www.x.org/archive/individual/xcb/${name}-${version}.tar.gz" +) +build_depends=( + "pkgconf" + "python" +) +depends=( + "libXau" + "xorg-util-macros" + "xcb-proto" +) + +function prepare() { + tar xf ${name}-${version}.tar.gz + cd ${name}-${version} +} + +function build() { + ./configure --prefix=${_prefix} + make -j${_maxjobs} +} + +function package() { + make install DESTDIR="${_pkgdir}" +} -- cgit