summaryrefslogtreecommitdiff
path: root/repo/system/libptytty
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/libptytty')
-rw-r--r--repo/system/libptytty/libptytty.xibuild25
1 files changed, 25 insertions, 0 deletions
diff --git a/repo/system/libptytty/libptytty.xibuild b/repo/system/libptytty/libptytty.xibuild
new file mode 100644
index 0000000..bc36364
--- /dev/null
+++ b/repo/system/libptytty/libptytty.xibuild
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+MAKEDEPS="meson cmake"
+DEPS="musl"
+
+PKG_VER=2.0
+SOURCE=http://dist.schmorp.de/libptytty/libptytty-$PKG_VER.tar.gz
+DESC="Library for OS independent and secure pty/tty handling"
+
+build () {
+ mkdir build &&
+ cd build &&
+
+ cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DPT_UTMP_FILE:STRING=/run/utmp \
+ .. &&
+ make
+
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+ mv $PKG_DEST/usr/lib64 $PKG_DEST/usr/lib
+}