1
0
forked from ports/contrib

libvterm: initial commit, version 0.3

This commit is contained in:
Tim Biermann 2022-11-27 17:59:19 +00:00
parent 2e266c9639
commit 197e13725d
3 changed files with 35 additions and 0 deletions

16
libvterm/.footprint Normal file

@ -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

5
libvterm/.signature Normal file

@ -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

14
libvterm/Pkgfile Normal file

@ -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
}