xclip: adopted

This commit is contained in:
Matt Housh 2023-05-18 14:15:05 -05:00
parent 237b0f0ae6
commit a33e446b3e
3 changed files with 33 additions and 0 deletions

11
xclip/.footprint Normal file
View File

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

5
xclip/.signature Normal file
View File

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

17
xclip/Pkgfile Normal file
View File

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