Created
April 21, 2016 17:41
-
-
Save bvaudour/be5062a1d73360e22519313e1c905428 to your computer and use it in GitHub Desktop.
PKGBUILD for xclip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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