summaryrefslogtreecommitdiff
path: root/xsel
diff options
context:
space:
mode:
authorShokara Kou <kou@13f0.net>2022-05-13 12:33:47 -0400
committerShokara Kou <kou@13f0.net>2022-12-10 16:12:53 -0500
commit03eacb7d9850915d4af472d55c3fae58ec72d02d (patch)
treebfcd3c659abf2a011e73efef4524ed25dec82cf6 /xsel
parent60b6d40c62542bce2ef60db0f16cc0f39fe7e70e (diff)
add xsel
Diffstat (limited to 'xsel')
-rw-r--r--xsel/.footprint7
-rw-r--r--xsel/.md5sum1
-rw-r--r--xsel/Pkgfile21
3 files changed, 29 insertions, 0 deletions
diff --git a/xsel/.footprint b/xsel/.footprint
new file mode 100644
index 0000000..b958d3b
--- /dev/null
+++ b/xsel/.footprint
@@ -0,0 +1,7 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3-rwxr-xr-x root/root usr/bin/xsel
4drwxr-xr-x root/root usr/share/
5drwxr-xr-x root/root usr/share/man/
6drwxr-xr-x root/root usr/share/man/man1/
7-rw-r--r-- root/root usr/share/man/man1/xsel.1x.gz
diff --git a/xsel/.md5sum b/xsel/.md5sum
new file mode 100644
index 0000000..01a61b0
--- /dev/null
+++ b/xsel/.md5sum
@@ -0,0 +1 @@
75983f143ce83dc259796c6eaf85c8f5 xsel-1.2.0.tar.gz
diff --git a/xsel/Pkgfile b/xsel/Pkgfile
new file mode 100644
index 0000000..be4c19f
--- /dev/null
+++ b/xsel/Pkgfile
@@ -0,0 +1,21 @@
1# Description: cli program for getting/setting the contents of the X selection
2# URL: http://www.kfish.org/software/xsel/
3# Maintainer: Shokara Kou, kou at 13f0 dot net
4# Depends on: xorg-libx11
5
6name=xsel
7version=1.2.0
8release=1
9source=(http://www.kfish.org/software/$name/download/$name-$version.tar.gz)
10
11build() {
12 cd $name-$version
13
14 CFLAGS=-Wno-error=stringop-truncation ./configure \
15 --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19
20 rm -fr $PKG/usr/share/doc
21}