From 606bc59d0f8f67815c6a717843835477d44db6b3 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 1 May 2022 21:21:05 +0000 Subject: added ungoogled chromium --- repo/util/openssh.xibuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'repo/util/openssh.xibuild') diff --git a/repo/util/openssh.xibuild b/repo/util/openssh.xibuild index c60a2ed..1430347 100644 --- a/repo/util/openssh.xibuild +++ b/repo/util/openssh.xibuild @@ -1,12 +1,14 @@ #!/bin/sh MAKEDEPS="make " -DEPS="musl krb5 openssl libedit ldns libxcrypt zlib pam" +DEPS="musl krb5 openssl libedit ldns libxcrypt zlib pam argp-standalone" PKG_VER=8.8p1 SOURCE=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-$PKG_VER.tar.gz DESC="Premier connectivity tool for remote login with the SSH protocol" +ADDITIONAL="sshd.initd sshd.confd" + build () { ./configure --prefix=/usr \ --sysconfdir=/etc/ssh \ @@ -21,12 +23,14 @@ build () { package () { make DESTDIR=$PKG_DEST install - install -m755 contrib/ssh-copy-id $PKG_DEST/usr/bin + install -Dm755 contrib/ssh-copy-id $PKG_DEST/usr/bin - install -m644 contrib/ssh-copy-id.1 \ + install -Dm644 contrib/ssh-copy-id.1 \ $PKG_DEST/usr/share/man/man1 - install -m755 -d $PKG_DEST/usr/share/doc/openssh-$PKG_VER - install -m644 INSTALL LICENCE OVERVIEW README* \ + install -Dm755 -d $PKG_DEST/usr/share/doc/openssh-$PKG_VER + install -Dm644 INSTALL LICENCE OVERVIEW README* \ $PKG_DEST/usr/share/doc/openssh-$PKG_VER + install -Dm755 sshd.initd $PKG_DEST/etc/init.d/sshd + install -Dm755 sshd.confd $PKG_DEST/etc/conf.d/sshd } -- cgit v1.2.1