1
0
forked from ports/contrib

xclip: initial release

This commit is contained in:
Fredrik Rinnestam 2013-11-24 03:40:56 +01:00
parent df9d86d3a0
commit a2d0019ec1
3 changed files with 30 additions and 0 deletions

10
xclip/.footprint Normal file
View File

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

1
xclip/.md5sum Normal file
View File

@ -0,0 +1 @@
f7e19d3e976fecdc1ea36cd39e39900d xclip-0.12.tar.gz

19
xclip/Pkgfile Normal file
View File

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