Update package version to 10.0p2

This commit is contained in:
2025-09-19 13:57:15 +03:00
parent 451a21c35e
commit e5e434cc29
3 changed files with 37 additions and 10 deletions
+15 -7
View File
@@ -18,11 +18,15 @@ build() {
./configure --prefix=/usr \
--sysconfdir=/etc/ssh \
--with-privsep-user=nobody \
--with-privsep-path=/usr/share/empty.sshd \
--with-default-path=/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin \
--with-superuser-path=/usr/sbin:/usr/bin \
--with-pid-dir=/run \
--with-security-key-builtin \
--with-kerberos5=/usr \
--with-pam
--with-xauth=/usr/bin/xauth \
--with-pam \
--with-ssl-engine \
--with-libedit
make
}
@@ -36,16 +40,20 @@ check() {
# This function is used to move the compiled files into the output directory
package() {
make DESTDIR="$BPM_OUTPUT" install
install -m755 contrib/ssh-copy-id "$BPM_OUTPUT"/usr/bin
install -m644 contrib/ssh-copy-id.1 "$BPM_OUTPUT"/usr/share/man/man1
# Install pam module
install -Dm644 "$BPM_WORKDIR"/sshd-pam "$BPM_OUTPUT"/etc/pam.d/sshd
# Install default sshd config
install -Dm644 "$BPM_WORKDIR"/sshd_config "$BPM_OUTPUT"/etc/ssh/sshd_config
# Install esvm services
install -Dm644 "$BPM_WORKDIR"/sshd.esv "$BPM_OUTPUT"/etc/esvm/services/sshd.esv
install -Dm644 "$BPM_WORKDIR"/ssh-keygen.esv "$BPM_OUTPUT"/etc/esvm/services/ssh-keygen.esv
# Install package license
install -Dm644 LICENCE "$BPM_OUTPUT"/usr/share/licenses/openssh/LICENSE
}