Skip to content

Instantly share code, notes, and snippets.

@bvaudour
Created April 21, 2016 17:41
Show Gist options
  • Save bvaudour/be5062a1d73360e22519313e1c905428 to your computer and use it in GitHub Desktop.
Save bvaudour/be5062a1d73360e22519313e1c905428 to your computer and use it in GitHub Desktop.
PKGBUILD for xclip
pkgname=xclip
pkgver=0.12.20160314
pkgrel=1
_commit=0a1bbcc
pkgdesc='Command line interface to the X11 clipboard'
url='https://github.com/astrand/xclip'
arch=('x86_64')
license=('GPL')
depends=('libxmu')
source=("https://github.com/astrand/xclip/tarball/${_commit}/xclip.tar.gz")
sha256sums=('5f99ab8634980ef46314e9041d0088df0c423efcaaf00fe40748f721ca0453eb')
build() {
cd "astrand-${pkgname}-${_commit}"
./bootstrap
./configure --prefix=/usr
make
}
package() {
cd "astrand-${pkgname}-${_commit}"
make DESTDIR="${pkgdir}" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment