From cb447620084a20be80d116c81c2e9ec110be7118 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 01:23:51 +0000 Subject: restructured repo system --- repo/devel/ninja.xibuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 repo/devel/ninja.xibuild (limited to 'repo/devel/ninja.xibuild') diff --git a/repo/devel/ninja.xibuild b/repo/devel/ninja.xibuild new file mode 100644 index 0000000..cfd705f --- /dev/null +++ b/repo/devel/ninja.xibuild @@ -0,0 +1,18 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=git://github.com/ninja-build/ninja.git +BRANCH=release +DESC="Small build system with a focus on speed" + +build () { + python configure.py --bootstrap + ./ninja ninja_test +} + +package () { + install -vm755 ninja $PKG_DEST/usr/bin/ + install -vDm644 misc/bash-completion $PKG_DEST/usr/share/bash-completion/completions/ninja + install -vDm644 misc/zsh-completion $PKG_DEST/usr/share/zsh/site-functions/_ninja +} -- cgit v1.2.1