libtermkey: initial commit, version 0.22

This commit is contained in:
Tim Biermann 2022-11-27 17:59:20 +00:00
parent 197e13725d
commit a99d114af6
3 changed files with 60 additions and 0 deletions

40
libtermkey/.footprint Normal file
View File

@ -0,0 +1,40 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/termkey.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libtermkey.a
-rwxr-xr-x root/root usr/lib/libtermkey.la
lrwxrwxrwx root/root usr/lib/libtermkey.so -> libtermkey.so.1.14.2
lrwxrwxrwx root/root usr/lib/libtermkey.so.1 -> libtermkey.so.1.14.2
-rwxr-xr-x root/root usr/lib/libtermkey.so.1.14.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/termkey.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/termkey_advisereadable.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_canonicalise.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_get_buffer_remaining.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_get_fd.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_get_keyname.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_getkey.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_interpret_csi.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_interpret_modereport.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_interpret_mouse.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_interpret_position.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_interpret_string.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_keycmp.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_keyname2sym.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_lookup_keyname.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_new.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_push_bytes.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_set_buffer_size.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_set_canonflags.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_set_flags.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_set_waittime.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_start.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_strfkey.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_strpkey.3.gz
-rw-r--r-- root/root usr/share/man/man3/termkey_waitkey.3.gz
drwxr-xr-x root/root usr/share/man/man7/
-rw-r--r-- root/root usr/share/man/man7/termkey.7.gz

5
libtermkey/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31L6EDs+O1Xb3NGV0uVPC10UDQBgg/3UrRG/cF7Mz+GPD1JEt+Me02PS5fsFg+qE8392W55V3RGtTjQw0uT57wE=
SHA256 (Pkgfile) = ed4a4ad5543ad116c032a7bcd79a06063028d0aaa84adca2157fe9c802fc1a9b
SHA256 (.footprint) = 24b9d99b1f7c472f319d38595b16cac5e5f385c9972999fde261c716683b2238
SHA256 (libtermkey-0.22.tar.gz) = 6945bd3c4aaa83da83d80a045c5563da4edd7d0374c62c0d35aec09eb3014600

15
libtermkey/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Library for easy processing of keyboard entry from terminal-based programs
# URL: http://www.leonerd.org.uk/code/libtermkey
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: unibilium
name=libtermkey
version=0.22
release=1
source=(https://www.leonerd.org.uk/code/libtermkey/libtermkey-$version.tar.gz)
build() {
cd $name-$version
make PREFIX=/usr
make PREFIX=/usr DESTDIR=$PKG install
}