From 79c82d8fc0a4f6618429a0373bb832afd105543e Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 27 Feb 2022 00:55:34 +0000 Subject: added all missing libraries and headers that musl doesnt have --- repo/system/utmps.xibuild | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 repo/system/utmps.xibuild (limited to 'repo/system/utmps.xibuild') diff --git a/repo/system/utmps.xibuild b/repo/system/utmps.xibuild new file mode 100644 index 0000000..28b358f --- /dev/null +++ b/repo/system/utmps.xibuild @@ -0,0 +1,38 @@ +#!/bin/sh + +MAKEDEPS="" +DEPS="skalib" + +PKG_VER=0.1.1.0 +SOURCE=https://skarnet.org/software/utmps/utmps-0.1.1.0.tar.gz + +DESC="Library implementing utmpx.h family of functions" + +prepare () { + sed -i -e "s/@@VERSION@@/0.1.1.0/g" -- /tmp/*.pc +} + +build () { + ./configure \ + --enable-shared \ + --libdir=/usr/lib \ + --with-dynlib=/lib \ + --libexecdir="/lib/utmps" \ + --with=dynlib=/lib + make +} + +package () { + make DESTDIR=$PKG_DEST install + ln -sv utmps/utmpx.h $PKG_DEST/usr/include/utmpx.h + + cat > $PKG_DEST/usr/lib/pkgconfig/utmps.pc << EOF +Name: utmps +Description: A secure implementation of the utmp mechanism. +URL: https://skarnet.org/software/utmps/ +Version: @@VERSION@@ +Requires.private: skalibs +Libs: -lutmps +Cflags: -I/usr/include/utmps +EOF +} -- cgit v1.2.1