diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-21 03:22:19 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-21 03:22:19 +0000 |
commit | d0f33415f254cb2fee06fd89f9cfed4535322f37 (patch) | |
tree | 66c13d72eac4f0110772b4675231c891334137bc /social/monkeysphere | |
parent | 7e108c74958ec076a3734822f61f145d0d69547f (diff) |
Fri Mar 21 03:19:28 UTC 2014
Diffstat (limited to 'social/monkeysphere')
-rw-r--r-- | social/monkeysphere/PKGBUILD | 22 | ||||
-rw-r--r-- | social/monkeysphere/monkeysphere.install | 43 |
2 files changed, 0 insertions, 65 deletions
diff --git a/social/monkeysphere/PKGBUILD b/social/monkeysphere/PKGBUILD deleted file mode 100644 index 3c5c590b8..000000000 --- a/social/monkeysphere/PKGBUILD +++ /dev/null @@ -1,22 +0,0 @@ -# Contributor: fauno <fauno@kiwwwi.com.ar> -# Based on monkeysphere-git from -# Contributor: Olivier Mehani <shtrom-arch@ssji.net> -# $Id: PKGBUILD 264 2010-11-10 00:57:53Z shtrom $ -pkgname=monkeysphere -pkgver=0.35 -pkgrel=3 -pkgdesc="Leverage the OpenPGP web of trust for OpenSSH and Web authentication" -arch=('any') -url="http://web.monkeysphere.info/" -license=('GPL3') -depends=('gnupg' 'lockfile-progs' 'perl-crypt-openssl-rsa' 'perl-digest-sha1') -source=(http://archive.monkeysphere.info/debian/pool/${pkgname}/m/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz) -install=monkeysphere.install -md5sums=('481ac14c9fdef0ccd1944c593bd4f517') - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir/" install - mkdir -p $pkgdir/var/lib/monkeysphere -} diff --git a/social/monkeysphere/monkeysphere.install b/social/monkeysphere/monkeysphere.install deleted file mode 100644 index 2013f9f41..000000000 --- a/social/monkeysphere/monkeysphere.install +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# $Id: monkeysphere.install 264 2010-11-10 00:57:53Z shtrom $ -# vim:set ts=2 sw=2 et: - -# arg 1: the new package version -pre_install() { - /bin/true -} - -# arg 1: the new package version -post_install() { - echo ">>> Creating monkeysphere user and group and setting permissions..." - getent group monkeysphere >/dev/null || usr/sbin/groupadd monkeysphere - getent passwd monkeysphere >/dev/null || usr/sbin/useradd -c 'Monkeysphere WoT server identification tool' -g monkeysphere -d '/var/lib/monkeysphere' -s /bin/bash monkeysphere - -# Should be root:root for sshd to work - chown root:root /var/lib/monkeysphere -} - -# arg 1: the new package version -# arg 2: the old package version -pre_upgrade() { - /bin/true -} - -# arg 1: the new package version -# arg 2: the old package version -post_upgrade() { -# Should be root:root for sshd to work - chown root:root /var/lib/monkeysphere -} - -# arg 1: the old package version -pre_remove() { - usr/sbin/userdel monkeysphere &>/dev/null - (getent group monkeysphere >/dev/null && usr/sbin/groupdel monkeysphere &>/dev/null) || /bin/true -} - -# arg 1: the old package version -post_remove() { - /bin/true -} - |