diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/xorg-xconsole/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/xorg-xconsole/PKGBUILD')
-rw-r--r-- | extra/xorg-xconsole/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/extra/xorg-xconsole/PKGBUILD b/extra/xorg-xconsole/PKGBUILD new file mode 100644 index 000000000..204892339 --- /dev/null +++ b/extra/xorg-xconsole/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=xorg-xconsole +pkgver=1.0.4 +pkgrel=1 +pkgdesc="Monitor system console messages with X" +arch=(i686 x86_64) +url="http://xorg.freedesktop.org/" +license=('custom') +depends=('libxaw' 'libxmu' 'libxt' 'libx11') +makedepends=('xorg-util-macros') +source=(http://xorg.freedesktop.org/archive/individual/app/xconsole-${pkgver}.tar.bz2) +sha1sums=('195299d4948ba4c62e961ddd0bd4572283244715') + +build() { + cd "${srcdir}/xconsole-${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}/" +} |