diff options
| author | Shokara Kou <kou@13f0.net> | 2022-05-13 12:33:47 -0400 |
|---|---|---|
| committer | Shokara Kou <kou@13f0.net> | 2022-12-10 16:12:53 -0500 |
| commit | 03eacb7d9850915d4af472d55c3fae58ec72d02d (patch) | |
| tree | bfcd3c659abf2a011e73efef4524ed25dec82cf6 | |
| parent | 60b6d40c62542bce2ef60db0f16cc0f39fe7e70e (diff) | |
add xsel
| -rw-r--r-- | xsel/.footprint | 7 | ||||
| -rw-r--r-- | xsel/.md5sum | 1 | ||||
| -rw-r--r-- | xsel/Pkgfile | 21 |
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 @@ | |||
| 1 | drwxr-xr-x root/root usr/ | ||
| 2 | drwxr-xr-x root/root usr/bin/ | ||
| 3 | -rwxr-xr-x root/root usr/bin/xsel | ||
| 4 | drwxr-xr-x root/root usr/share/ | ||
| 5 | drwxr-xr-x root/root usr/share/man/ | ||
| 6 | drwxr-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 | |||
| 6 | name=xsel | ||
| 7 | version=1.2.0 | ||
| 8 | release=1 | ||
| 9 | source=(http://www.kfish.org/software/$name/download/$name-$version.tar.gz) | ||
| 10 | |||
| 11 | build() { | ||
| 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 | } | ||
