summaryrefslogtreecommitdiff
path: root/repo/system/libptytty.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
committerdavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
commit739c65c54cb0e957df5e9b76f93fb02554e5cac3 (patch)
tree09ddfa0a342f3ea9de136cb50abdd79821bf1b53 /repo/system/libptytty.xibuild
parent4c585ad54388285500fd18a6aaa516894e0f2c16 (diff)
moved everything to new file formatting
Diffstat (limited to 'repo/system/libptytty.xibuild')
-rw-r--r--repo/system/libptytty.xibuild25
1 files changed, 0 insertions, 25 deletions
diff --git a/repo/system/libptytty.xibuild b/repo/system/libptytty.xibuild
deleted file mode 100644
index bc36364..0000000
--- a/repo/system/libptytty.xibuild
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/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
-}