From 873665024ebfaa761ee49b508a79db7178aeb778 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 4 Jun 2022 15:08:04 +0100 Subject: added gnupg --- repo/st/st.xibuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 repo/st/st.xibuild (limited to 'repo/st') diff --git a/repo/st/st.xibuild b/repo/st/st.xibuild new file mode 100644 index 0000000..3fa49a7 --- /dev/null +++ b/repo/st/st.xibuild @@ -0,0 +1,35 @@ +#!/bin/sh + +NAME="st" +DESC="Simple terminal emulator for X" + +MAKEDEPS="fontconfig freetype libx11 libxext libxft" + +PKG_VER=0.8.5 +SOURCE="https://dl.suckless.org/st/st-$PKG_VER.tar.gz" + +prepare() { + default_prepare + sed -i '/tic/d' Makefile +} + +build() { + make +} + +package() { + make install PREFIX=/usr DESTDIR="$PKG_DEST" + mkdir -p "$PKG_DEST"/usr/share/applications + + cat > "$PKG_DEST"/usr/share/applications/st.desktop <<-EOF + [Desktop Entry] + Name=st + Comment=st is a simple virtual terminal emulator for X which sucks less + Exec=st + Terminal=false + Type=Application + Icon=gnome-xterm + Categories=System;TerminalEmulator; + EOF +} + -- cgit v1.2.1