From 48ca75555522716f0f686dcae3dd6cf3d8ad714d Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 11:05:19 +0100 Subject: removed idea of repos --- repo/libptytty/libptytty.xibuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 repo/libptytty/libptytty.xibuild (limited to 'repo/libptytty') diff --git a/repo/libptytty/libptytty.xibuild b/repo/libptytty/libptytty.xibuild new file mode 100644 index 0000000..19d5cc1 --- /dev/null +++ b/repo/libptytty/libptytty.xibuild @@ -0,0 +1,27 @@ +#!/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 +} -- cgit v1.2.1