17 lines
442 B
Plaintext
17 lines
442 B
Plaintext
# Description: command-line program for getting and setting the contents of the X selection
|
|
# URL: http://www.vergenet.net/~conrad/software/xsel/
|
|
# Maintainer: Manu Kumar, maraku at gmx dot com
|
|
# Depends on: xorg-libxt
|
|
|
|
name=xsel
|
|
version=1.2.0
|
|
release=2
|
|
source=(http://www.vergenet.net/~conrad/software/xsel/download/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make install DESTDIR=$PKG
|
|
}
|