summaryrefslogtreecommitdiff
path: root/repo/util/openssh/openssh.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/util/openssh/openssh.xibuild
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/util/openssh/openssh.xibuild')
-rw-r--r--repo/util/openssh/openssh.xibuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/repo/util/openssh/openssh.xibuild b/repo/util/openssh/openssh.xibuild
deleted file mode 100644
index 869bcb9..0000000
--- a/repo/util/openssh/openssh.xibuild
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-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 \
- --with-md5-passwords \
- --with-privsep-path=/var/lib/sshd \
- --with-default-path=/usr/bin \
- --with-superuser-path=/usr/sbin:/usr/bin \
- --with-pid-dir=/run
- make
-}
-
-
-package () {
- make DESTDIR=$PKG_DEST install
- install -Dm755 contrib/ssh-copy-id $PKG_DEST/usr/bin
-
- install -Dm644 contrib/ssh-copy-id.1 \
- $PKG_DEST/usr/share/man/man1
- 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
-}
-
-postinstall () {
- groupadd -g 33 sshd
- useradd -u 33 -g 33 -c sshd -d / sshd
-}