forked from ports/contrib
20 lines
514 B
Plaintext
20 lines
514 B
Plaintext
# Description: interface to X selections ("the clipboard") from the command line.
|
|
# URL: http://people.debian.org/~kims/xclip/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on:
|
|
|
|
name=xclip
|
|
version=0.08
|
|
release=1
|
|
source="http://people.debian.org/~kims/$name/$name-$version.tar.gz"
|
|
|
|
build()
|
|
{
|
|
cd $name
|
|
make
|
|
install -d $PKG/usr/{bin,man/man1}
|
|
install $name $PKG/usr/bin
|
|
install $name.man $PKG/usr/man/man1/$name.1
|
|
}
|