summaryrefslogtreecommitdiff
path: root/repo/libpthread-stubs
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-10-22 16:29:29 +0100
committerdavidovski <david@davidovski.xyz>2022-10-22 16:29:29 +0100
commitf99268f797c120a24030a573ef22813cd018beb5 (patch)
treeee18857a5eda7bc94286e3924dc2209aea7b92c4 /repo/libpthread-stubs
parent95545d88b997a17ff03bb164af33c33e2a12d693 (diff)
Added unrar
Diffstat (limited to 'repo/libpthread-stubs')
-rw-r--r--repo/libpthread-stubs/libpthread-stubs.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/libpthread-stubs/libpthread-stubs.xibuild b/repo/libpthread-stubs/libpthread-stubs.xibuild
new file mode 100644
index 0000000..cbdeaec
--- /dev/null
+++ b/repo/libpthread-stubs/libpthread-stubs.xibuild
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+NAME="libpthread-stubs"
+DESC="Pthread functions stubs for platforms missing them"
+
+MAKEDEPS=""
+
+PKG_VER=0.4
+SOURCE="https://xcb.freedesktop.org/dist/libpthread-stubs-$PKG_VER.tar.bz2"
+
+build() {
+ ./configure \
+ --prefix=/usr
+ make
+}
+
+check() {
+ make check
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+