From a33e446b3ecd3242d6b5e0c68a274eb0523cfa88 Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Thu, 18 May 2023 14:15:05 -0500 Subject: [PATCH] xclip: adopted --- xclip/.footprint | 11 +++++++++++ xclip/.signature | 5 +++++ xclip/Pkgfile | 17 +++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 xclip/.footprint create mode 100644 xclip/.signature create mode 100644 xclip/Pkgfile diff --git a/xclip/.footprint b/xclip/.footprint new file mode 100644 index 000000000..5a24040d5 --- /dev/null +++ b/xclip/.footprint @@ -0,0 +1,11 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/xclip +-rwxr-xr-x root/root usr/bin/xclip-copyfile +-rwxr-xr-x root/root usr/bin/xclip-cutfile +-rwxr-xr-x root/root usr/bin/xclip-pastefile +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/xclip-copyfile.1.gz +-rw-r--r-- root/root usr/share/man/man1/xclip.1.gz diff --git a/xclip/.signature b/xclip/.signature new file mode 100644 index 000000000..b7c528229 --- /dev/null +++ b/xclip/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3y6jeSifgB3KepZC4JEYZMBdyKlRquwDztOsSzRAsCUWi1wJjh641+z1N7YS9fVXE78G0qcUSkeX2R/kTTGtlwM= +SHA256 (Pkgfile) = 18991bb106208e72aa81c688a4e7cd7d9ddfaa40956c85f58d5501dbf5adde50 +SHA256 (.footprint) = 5356e17d100942ccf8f90393ddf85ef5d88e7a7bc6bdeb2eaae3d2328bfcd439 +SHA256 (xclip-0.13.tar.gz) = ca5b8804e3c910a66423a882d79bf3c9450b875ac8528791fb60ec9de667f758 diff --git a/xclip/Pkgfile b/xclip/Pkgfile new file mode 100644 index 000000000..55898064b --- /dev/null +++ b/xclip/Pkgfile @@ -0,0 +1,17 @@ +# Description: Command line interface to the X11 clipboard +# URL: https://github.com/astrand/xclip +# Maintainer: Matt Housh, jaeger at crux dot ninja +# Depends on: xorg-libxmu + +name=xclip +version=0.13 +release=3 +source=(https://github.com/astrand/$name/archive/$version/$name-$version.tar.gz) + +build() { + cd $name-$version + ./bootstrap + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +}