Date: Sunday, March 11, 2018 @ 18:30:38 Author: andyrtr Revision: 318587
archrelease: copy trunk to testing-x86_64 Added: xorg-xwud/repos/testing-x86_64/ xorg-xwud/repos/testing-x86_64/PKGBUILD (from rev 318586, xorg-xwud/trunk/PKGBUILD) ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Copied: xorg-xwud/repos/testing-x86_64/PKGBUILD (from rev 318586, xorg-xwud/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2018-03-11 18:30:38 UTC (rev 318587) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Jan de Groot <j...@archlinux.org> + +pkgname=xorg-xwud +pkgver=1.0.5 +pkgrel=1 +pkgdesc="X Window System image undumping utility" +arch=('x86_64') +url="https://xorg.freedesktop.org/" +license=('custom') +depends=('libx11') +makedepends=('xorg-util-macros') +groups=('xorg-apps' 'xorg') +source=(https://xorg.freedesktop.org/archive/individual/app/xwud-${pkgver}.tar.bz2{,.sig}) +sha512sums=('27a0ce7481978ae6cd94b0d94374af72185e270d68f2496620e148bb00945427c4827138d9efc48745e6382e3da3390ed0cdff7dbd02dcf9706e8ecccae97184' + 'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith <alan.coopersm...@oracle.com>" + +build() { + cd xwud-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd xwud-${pkgver} + make DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +}