summaryrefslogtreecommitdiff
path: root/community/mosh
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-05-10 00:01:51 +0000
committerroot <root@rshg054.dnsready.net>2012-05-10 00:01:51 +0000
commit1adfdd111d570a6dfc66543a2858d9554c73e7a7 (patch)
treea1c3647bf2208871299e0a1419d6e0b64e1c82b7 /community/mosh
parent065cf8163398f8da177e9f09f5a5e97a063ca5c5 (diff)
Thu May 10 00:01:50 UTC 2012
Diffstat (limited to 'community/mosh')
-rw-r--r--community/mosh/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/mosh/PKGBUILD b/community/mosh/PKGBUILD
new file mode 100644
index 000000000..49a766641
--- /dev/null
+++ b/community/mosh/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Christian Neukirchen <chneukirchen@gmail.com>
+# Contributor: Thomas Weißschuh <thomas_weissschuh lavabit.com>
+
+pkgname=mosh
+pkgver=1.2
+pkgrel=1
+pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
+arch=('x86_64' 'i686')
+url="http://mosh.mit.edu/"
+license=('GPL3')
+depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty')
+#optdepends=('libutempter: record of session in {u,t}wmp (recompile mosh afterwards)')
+conflicts=('mosh-git')
+source=("$pkgname-$pkgver.tgz::https://nodeload.github.com/keithw/mosh/tarball/master")
+sha1sums=('690e301560808f13a8a7b19bd7740d81fecac262')
+
+build() {
+ cd "$srcdir/keithw-mosh-"*
+
+ ./autogen.sh
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/keithw-mosh-"*
+
+ make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et: