summaryrefslogtreecommitdiff
path: root/community/mosh
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-10-20 01:22:20 -0700
committerroot <root@rshg054.dnsready.net>2012-10-20 01:22:20 -0700
commit9598f5141ea75ffa72a3c7c85639c6f296020ef1 (patch)
tree36488f90eaa723f707c26f79ba771bb2910e8368 /community/mosh
parentdcc55a1cfa32068d0759c1c8307f6c07c11aec99 (diff)
Sat Oct 20 01:22:19 PDT 2012
Diffstat (limited to 'community/mosh')
-rw-r--r--community/mosh/PKGBUILD18
1 files changed, 9 insertions, 9 deletions
diff --git a/community/mosh/PKGBUILD b/community/mosh/PKGBUILD
index 651e3b33e..f7b1baaaf 100644
--- a/community/mosh/PKGBUILD
+++ b/community/mosh/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor: Thomas Weißschuh <thomas_weissschuh lavabit.com>
pkgname=mosh
-pkgver=1.2.2
+pkgver=1.2.3
pkgrel=1
pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
arch=('x86_64' 'i686')
@@ -13,11 +13,11 @@ license=('GPL3')
depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty')
#optdepends=('libutempter: record of session in {u,t}wmp (recompile mosh afterwards)')
source=("https://github.com/downloads/keithw/mosh/$pkgname-$pkgver.tar.gz")
-sha1sums=('f0227800298d80e9f1353db3b29a807de833d7d2')
+sha256sums=('93f09fda77e57f05485a61f3ac679bf9f3f359a9b0b93c216ddd53cd124a768f')
options=('!emptydirs')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $srcdir/$pkgname-$pkgver
./autogen.sh
./configure --prefix=/usr
@@ -25,13 +25,13 @@ build() {
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $srcdir/$pkgname-$pkgver
- make DESTDIR="$pkgdir/" install
- install -Dm644 "conf/bash_completion.d/$pkgname" \
- "$pkgdir/usr/share/bash-completion/completions/$pkgname"
- install -Dm644 "conf/ufw/applications.d/$pkgname" \
- "$pkgdir/etc/ufw/applications.d/ufw-$pkgname"
+ make DESTDIR=$pkgdir install
+ install -Dm644 conf/bash_completion.d/$pkgname \
+ $pkgdir/usr/share/bash-completion/completions/$pkgname
+ install -Dm644 conf/ufw/applications.d/$pkgname \
+ $pkgdir/etc/ufw/applications.d/ufw-$pkgname
}
# vim:set ts=2 sw=2 et: