commit 197e13725d1a103ec9db5f566213894caf02bd0e Author: Tim Biermann <tbier@posteo.de> Date: Sun Nov 27 17:59:19 2022 +0000 libvterm: initial commit, version 0.3 diff --git a/libvterm/.footprint b/libvterm/.footprint new file mode 100644 index 000000000..c4a91a130 --- /dev/null +++ b/libvterm/.footprint @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/unterm +-rwxr-xr-x root/root usr/bin/vterm-ctrl +-rwxr-xr-x root/root usr/bin/vterm-dump +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/vterm.h +-rw-r--r-- root/root usr/include/vterm_keycodes.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libvterm.a +-rwxr-xr-x root/root usr/lib/libvterm.la +lrwxrwxrwx root/root usr/lib/libvterm.so -> libvterm.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libvterm.so.0 -> libvterm.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libvterm.so.0.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/vterm.pc diff --git a/libvterm/.signature b/libvterm/.signature new file mode 100644 index 000000000..2e5e7c431 --- /dev/null +++ b/libvterm/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF37/T39SDTJc44UZo5mwzR5ZbcBEmd+szKED4onQp1sjyQLqvIJjUsNANjgScQtv2mMsv6tGhbHL+g7VvRHdR9wk= +SHA256 (Pkgfile) = 3bbe7dbf7577b13e610f817ca998056435face63e94fd582d35ffd3aee839a73 +SHA256 (.footprint) = abc07ecbcaee8f3138c66082e3736d420c2e0a52d68620861115604428397baa +SHA256 (libvterm-0.3.tar.gz) = 61eb0d6628c52bdf02900dfd4468aa86a1a7125228bab8a67328981887483358 diff --git a/libvterm/Pkgfile b/libvterm/Pkgfile new file mode 100644 index 000000000..a0c35748f --- /dev/null +++ b/libvterm/Pkgfile @@ -0,0 +1,14 @@ +# Description: Abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator +# URL: https://www.leonerd.org.uk/code/libvterm/ +# Maintainer: Tim Biermann, tbier at posteo dot de + +name=libvterm +version=0.3 +release=1 +source=(https://www.leonerd.org.uk/code/libvterm/libvterm-$version.tar.gz) + +build() { + cd $name-$version + make PREFIX=/usr + make PREFIX=/usr DESTDIR=$PKG install +}