diff options
Diffstat (limited to 'abs/core/xorg-xwud')
-rw-r--r-- | abs/core/xorg-xwud/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core/xorg-xwud/PKGBUILD b/abs/core/xorg-xwud/PKGBUILD new file mode 100644 index 0000000..7ed437a --- /dev/null +++ b/abs/core/xorg-xwud/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=xorg-xwud +pkgver=1.0.3 +pkgrel=1 +pkgdesc="X Window System image undumping utility" +arch=(i686 x86_64) +url="http://xorg.freedesktop.org/" +license=('custom') +depends=('libx11') +makedepends=('xorg-util-macros') +source=(http://xorg.freedesktop.org/archive/individual/app/xwud-${pkgver}.tar.bz2) +sha1sums=('2e706d50c7039e3daa4963d36ab703e48aa652ed') + +build() { + cd "${srcdir}/xwud-${pkgver}" + ./configure --prefix=/usr + make + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} |