diff options
Diffstat (limited to 'repo/system/libucontext/libucontext.xibuild')
-rw-r--r-- | repo/system/libucontext/libucontext.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/system/libucontext/libucontext.xibuild b/repo/system/libucontext/libucontext.xibuild new file mode 100644 index 0000000..801490b --- /dev/null +++ b/repo/system/libucontext/libucontext.xibuild @@ -0,0 +1,18 @@ +#!/bin/sh + +NAME="libucontext" +DESC="ucontext function implementations" + +MAKEDEPS="make " +DEPS="musl " + +PKG_VER=1.2 +SOURCE="https://distfiles.dereferenced.org/libucontext/libucontext-$PKG_VER.tar.xz" + +build () { + make PREFIX=/usr +} + +package () { + make PREFIX=/usr DESTDIR=$PKG_DEST install +} |