summaryrefslogtreecommitdiff
path: root/community/envoy/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
commit65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch)
treefbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/envoy/PKGBUILD
parentd53c44f055929b18d7d1b25f8367ee5836c435fc (diff)
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/envoy/PKGBUILD')
-rw-r--r--community/envoy/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/envoy/PKGBUILD b/community/envoy/PKGBUILD
new file mode 100644
index 000000000..868b969a9
--- /dev/null
+++ b/community/envoy/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 101179 2013-11-18 17:42:55Z eric $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+
+pkgname=envoy
+pkgver=5
+pkgrel=1
+pkgdesc="A ssh-agent/gpg-agent keychain and process monitor"
+arch=('i686' 'x86_64')
+url="http://github.com/vodik/envoy"
+license=('GPL')
+depends=('openssh' 'systemd')
+optdepends=('gnupg: gpg-agent support')
+makedepends=('ragel')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz"
+ "clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz")
+md5sums=('feee9b1a0eed31360324ea868d081801'
+ '8c4f3fd488fc8f92196a8aa42ac9567e')
+
+prepare() {
+ cd "$pkgname-$pkgver"
+ rm -fr clique
+ ln -s ../clique-0.1 clique
+}
+
+build() {
+ make -C "$pkgname-$pkgver"
+}
+
+package() {
+ make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# vim: ft=sh syn=sh et