diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2013-11-24 03:40:56 +0100 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2013-11-24 03:40:56 +0100 |
commit | a2d0019ec11236c52c5a35259151cd483cd1c893 (patch) | |
tree | 043f64501d4e12423fbb30dd57b790557b757850 /xclip | |
parent | df9d86d3a0699d47e6a9cad94d445d44a28834b8 (diff) | |
download | contrib-a2d0019ec11236c52c5a35259151cd483cd1c893.tar.gz contrib-a2d0019ec11236c52c5a35259151cd483cd1c893.tar.xz |
xclip: initial release
Diffstat (limited to 'xclip')
-rw-r--r-- | xclip/.footprint | 10 | ||||
-rw-r--r-- | xclip/.md5sum | 1 | ||||
-rw-r--r-- | xclip/Pkgfile | 19 |
3 files changed, 30 insertions, 0 deletions
diff --git a/xclip/.footprint b/xclip/.footprint new file mode 100644 index 000000000..b7dcd1ba7 --- /dev/null +++ b/xclip/.footprint @@ -0,0 +1,10 @@ +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/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/xclip-copyfile.1.gz +-rw-r--r-- root/root usr/man/man1/xclip.1.gz diff --git a/xclip/.md5sum b/xclip/.md5sum new file mode 100644 index 000000000..b813112c7 --- /dev/null +++ b/xclip/.md5sum @@ -0,0 +1 @@ +f7e19d3e976fecdc1ea36cd39e39900d xclip-0.12.tar.gz diff --git a/xclip/Pkgfile b/xclip/Pkgfile new file mode 100644 index 000000000..8e7179188 --- /dev/null +++ b/xclip/Pkgfile @@ -0,0 +1,19 @@ +# Description: A command line interface to the X11 clipboard +# URL: http://sourceforge.net/projects/xclip +# Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se +# Packager: Tadeusz Sosnierz, tadzikes gmail com +# Depends on: xorg-libxmu + +name=xclip +version=0.12 +release=2 +source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure --prefix=/usr \ + --mandir=/usr/man + make + make DESTDIR=$PKG install +} |