49 lines
2.4 KiB
Bash
49 lines
2.4 KiB
Bash
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
|
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
|
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
|
|
|
# The build function is executed in the source directory
|
|
# This function is used to compile the source code
|
|
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-pid-dir=/run \
|
|
--with-security-key-builtin \
|
|
--with-kerberos5=/usr \
|
|
--with-xauth=/usr/bin/xauth \
|
|
--with-pam \
|
|
--with-ssl-engine \
|
|
--with-libedit
|
|
make
|
|
}
|
|
|
|
# The check function is executed in the source directory
|
|
# This function is used to run tests to verify the package has been compiled correctly
|
|
check() {
|
|
make file-tests interop-tests unit
|
|
}
|
|
|
|
# The package function is executed in the source directory
|
|
# 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 package license
|
|
install -Dm644 LICENCE "$BPM_OUTPUT"/usr/share/licenses/openssh/LICENSE
|
|
}
|