18 lines
402 B
Plaintext
18 lines
402 B
Plaintext
# Description: Command line interface to the X11 clipboard
|
|
# URL: https://github.com/astrand/xclip
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: xorg-libxmu
|
|
|
|
name=xclip
|
|
version=0.13
|
|
release=3
|
|
source=(https://github.com/astrand/$name/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|