From c14990f8c1dcf1acb8da5f9880c69e51f13117bd Mon Sep 17 00:00:00 2001 From: Jeff Huang Date: Tue, 29 Sep 2015 10:24:33 +0000 Subject: [PATCH] gist: update to 4.4.2 --- gist/PKGBUILD | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gist/PKGBUILD b/gist/PKGBUILD index b347d1d37..d2bb6dd4c 100644 --- a/gist/PKGBUILD +++ b/gist/PKGBUILD @@ -1,14 +1,15 @@ - pkgname=gist -pkgver=4.3.0 +pkgver=4.4.2 pkgrel=1 pkgdesc="Provides a gist command to use from the terminal to upload content to https://gist.github.com/." arch=('x86_64') url="http://github.com/defunkt/gist" license=('MIT') depends=('ruby') +optdepends=("xclip: put pasted gist's url into X selection automagically" + "xsel: put pasted gist's url into X selection automagically") source=("https://github.com/defunkt/${pkgname}/archive/v${pkgver}.tar.gz") -md5sums=('d7a5e77aba92c677fd89a4a8ec36d077') +md5sums=('8ba23ef75c9650ea03557ae8eaf20b20') package() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -16,4 +17,5 @@ package() { install -Dm755 build/${pkgname} "${pkgdir}/usr/bin/${pkgname}" install -Dm644 build/${pkgname}.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" install -Dm644 LICENSE.MIT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README" }