diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
commit | 48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch) | |
tree | 00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/system/libptytty/libptytty.xibuild | |
parent | 871b2b573f01c1b3176a0f65458b3d281b41c437 (diff) |
removed idea of repos
Diffstat (limited to 'repo/system/libptytty/libptytty.xibuild')
-rw-r--r-- | repo/system/libptytty/libptytty.xibuild | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/repo/system/libptytty/libptytty.xibuild b/repo/system/libptytty/libptytty.xibuild deleted file mode 100644 index 19d5cc1..0000000 --- a/repo/system/libptytty/libptytty.xibuild +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -MAKEDEPS="meson cmake utmps" -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 \ - -DUTMP_SUPPORT=OFF \ - -DWTMP_SUPPORT=OFF \ - -DLASTLOG_SUPPORT=OFF \ - .. && - make - -} - -package () { - make DESTDIR=$PKG_DEST install - mv $PKG_DEST/usr/lib64 $PKG_DEST/usr/lib -} |