# Description: A command line interface to the X11 clipboard
# URL: https://github.com/astrand/xclip
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
# 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
}

# s-sht-mode
