commit 03eacb7d9850915d4af472d55c3fae58ec72d02d parent 60b6d40c62542bce2ef60db0f16cc0f39fe7e70e Author: Shokara Kou <kou@13f0.net> Date: Fri, 13 May 2022 12:33:47 -0400 add xsel Diffstat:
| A | xsel/.footprint | | | 7 | +++++++ |
| A | xsel/.md5sum | | | 1 | + |
| A | xsel/Pkgfile | | | 21 | +++++++++++++++++++++ |
3 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/xsel/.footprint b/xsel/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/xsel +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/xsel.1x.gz diff --git a/xsel/.md5sum b/xsel/.md5sum @@ -0,0 +1 @@ +75983f143ce83dc259796c6eaf85c8f5 xsel-1.2.0.tar.gz diff --git a/xsel/Pkgfile b/xsel/Pkgfile @@ -0,0 +1,21 @@ +# Description: cli program for getting/setting the contents of the X selection +# URL: http://www.kfish.org/software/xsel/ +# Maintainer: Shokara Kou, kou at 13f0 dot net +# Depends on: xorg-libx11 + +name=xsel +version=1.2.0 +release=1 +source=(http://www.kfish.org/software/$name/download/$name-$version.tar.gz) + +build() { + cd $name-$version + + CFLAGS=-Wno-error=stringop-truncation ./configure \ + --prefix=/usr + + make + make DESTDIR=$PKG install + + rm -fr $PKG/usr/share/doc +}