From 0f7fc864d98d3e8a852d3a6a835ae3331fde1bad Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 30 Mar 2020 23:00:12 -0400 Subject: Current state --- xcb-proto/build.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 xcb-proto/build.sh (limited to 'xcb-proto') diff --git a/xcb-proto/build.sh b/xcb-proto/build.sh new file mode 100644 index 0000000..e2778a8 --- /dev/null +++ b/xcb-proto/build.sh @@ -0,0 +1,25 @@ +#!/bin/bash +name=xcb-proto +version=1.14 +revision=0 +sources=( + "https://www.x.org/archive/individual/proto/${name}-${version}.tar.gz" +) +build_depends=( +) +depends=( +) + +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