summaryrefslogtreecommitdiff
path: root/extra/x2x
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-06-26 15:13:41 -0500
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-06-26 15:13:41 -0500
commitd26fb8dc20ba3b0e6ef535761b3ac5fd8e7b7c70 (patch)
treeae84713aa59e8e2eaa4a2a19db89294ea0b4c1cf /extra/x2x
parent2095d71af1b9e0c1dff405c178a9481d1020ca3e (diff)
parent8999fa1750304fb2367fb7743e49e013405e88be (diff)
Merge branch 'master' of vparabola:~/abslibre-pre-mips64el
Conflicts: community/distcc/PKGBUILD community/lxtask/PKGBUILD community/ushare/PKGBUILD extra/catdoc/PKGBUILD extra/curl/PKGBUILD extra/ethstatus/PKGBUILD extra/ffcall/PKGBUILD extra/gimp-dbp/PKGBUILD extra/gimp-refocus/PKGBUILD extra/gstreamer0.10-ugly/PKGBUILD extra/metacity/PKGBUILD extra/pulseaudio/PKGBUILD extra/x2x/PKGBUILD libre/kernel26-libre/PKGBUILD multilib/lib32-libpulse/PKGBUILD multilib/wine/PKGBUILD testing/alex/PKGBUILD testing/ghc/PKGBUILD testing/haskell-cgi/PKGBUILD testing/haskell-deepseq/PKGBUILD testing/haskell-fgl/PKGBUILD testing/haskell-glut/PKGBUILD testing/haskell-haskell-src/PKGBUILD testing/haskell-html/PKGBUILD testing/haskell-http/PKGBUILD testing/haskell-hunit/PKGBUILD testing/haskell-mtl/PKGBUILD testing/haskell-network/PKGBUILD testing/haskell-opengl/PKGBUILD testing/haskell-parallel/PKGBUILD testing/haskell-parsec/PKGBUILD testing/haskell-platform/PKGBUILD testing/haskell-quickcheck/PKGBUILD testing/haskell-regex-base/PKGBUILD testing/haskell-regex-compat/PKGBUILD testing/haskell-regex-posix/PKGBUILD testing/haskell-stm/PKGBUILD testing/haskell-syb/PKGBUILD testing/haskell-text/PKGBUILD testing/haskell-transformers/PKGBUILD testing/haskell-xhtml/PKGBUILD testing/haskell-zlib/PKGBUILD testing/perl/ChangeLog testing/perl/PKGBUILD testing/perl/perlbin.sh testing/pidgin/PKGBUILD testing/spamassassin/PKGBUILD
Diffstat (limited to 'extra/x2x')
-rw-r--r--extra/x2x/PKGBUILD26
1 files changed, 16 insertions, 10 deletions
diff --git a/extra/x2x/PKGBUILD b/extra/x2x/PKGBUILD
index 60fa7eb28..3fa89f714 100644
--- a/extra/x2x/PKGBUILD
+++ b/extra/x2x/PKGBUILD
@@ -1,23 +1,29 @@
-# $Id: PKGBUILD 36334 2009-04-21 02:04:21Z eric $
+# $Id: PKGBUILD 128494 2011-06-24 05:31:20Z eric $
# Maintainer: dorphell <dorphell@archlinux.org>
# Contributor: Judd Vinet <jvinet@zeroflux.org>
+
pkgname=x2x
pkgver=1.27
-pkgrel=5
+pkgrel=6
pkgdesc="Control one X display from another"
arch=(i686 x86_64 'mips64el')
-url="http://x2x.dottedmag.net/"
+url="https://github.com/dottedmag/x2x"
license=('custom')
depends=('libxtst')
makedepends=('imake')
-source=(http://x2x.dottedmag.net/releases/$pkgname-$pkgver.tar.gz LICENSE)
-md5sums=('3d1bc863f3209ec37caf7f57bde7e8f0' '7ebc35f66a8ded9b8d8d7ca4131c7ae8')
+source=(https://github.com/downloads/dottedmag/x2x/$pkgname-$pkgver.tar.gz LICENSE)
+md5sums=('3d1bc863f3209ec37caf7f57bde7e8f0'
+ '7ebc35f66a8ded9b8d8d7ca4131c7ae8')
build() {
- cd $srcdir/$pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
mv x2x.1 x2x.man
- xmkmf || return 1
- make || return 1
- make DESTDIR=$pkgdir MANPATH=/usr/share/man install install.man || return 1
- install -D -m644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ xmkmf
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" MANPATH=/usr/share/man install install.man
+ install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}