mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
parent
475b485bfb
commit
152b7b5103
|
@ -27,27 +27,25 @@ build:
|
||||||
gnu.org/gcc: '*'
|
gnu.org/gcc: '*'
|
||||||
gnu.org/make: '*'
|
gnu.org/make: '*'
|
||||||
script:
|
script:
|
||||||
- run: |
|
- run: curl -L "$PATCH1" | patch
|
||||||
curl -L "$PATCH1" | patch
|
|
||||||
curl -L "$PATCH2" | patch
|
|
||||||
if: darwin
|
if: darwin
|
||||||
- sed -i.bak "s|@PREFIX@/share/openssh|{{prefix}}/etc/ssh|g" sandbox-darwin.c
|
|
||||||
- rm -f sandbox-darwin.c.bak
|
|
||||||
- run: |
|
- run: |
|
||||||
sed -i.bak "s|-fzero-call-used-regs=all|-fzero-call-used-regs=used|g" configure
|
if test "{{hw.platform}}" = "darwin"; then
|
||||||
rm -f configure.bak
|
curl -L "$PATCH2" | patch
|
||||||
|
fi
|
||||||
|
if: <9.8
|
||||||
|
- sed -i "s|@PREFIX@/share/openssh|{{prefix}}/etc/ssh|g" sandbox-darwin.c
|
||||||
|
- run: sed -i "s|-fzero-call-used-regs=all|-fzero-call-used-regs=used|g" configure
|
||||||
if: darwin/x86-64
|
if: darwin/x86-64
|
||||||
- ./configure $CONFIGURE_ARGS
|
- ./configure $CONFIGURE_ARGS
|
||||||
- run: |
|
- run: sed -i "s|prefix=/usr/local|prefix={{prefix}}|g" Makefile
|
||||||
sed -i.bak "s|prefix=/usr/local|prefix={{prefix}}|g" Makefile
|
|
||||||
rm -f Makefile.bak
|
|
||||||
if: linux
|
if: linux
|
||||||
- make --jobs {{ hw.concurrency }}
|
- make --jobs {{ hw.concurrency }}
|
||||||
- make --jobs 1 install
|
- make --jobs 1 install
|
||||||
- run: ln -s ssh slogin
|
- run: ln -s ssh slogin
|
||||||
working-directory: "{{prefix}}/bin"
|
working-directory: '{{prefix}}/bin'
|
||||||
- run: curl -L "$RES_SSHD" -o org.openssh.sshd.sb
|
- run: curl -L "$RES_SSHD" -o org.openssh.sshd.sb
|
||||||
working-directory: "{{prefix}}/etc/ssh"
|
working-directory: '{{prefix}}/etc/ssh'
|
||||||
env:
|
env:
|
||||||
PATCH1: https://raw.githubusercontent.com/Homebrew/patches/1860b0a745f1fe726900974845d1b0dd3c3398d6/openssh/patch-sandbox-darwin.c-apple-sandbox-named-external.diff
|
PATCH1: https://raw.githubusercontent.com/Homebrew/patches/1860b0a745f1fe726900974845d1b0dd3c3398d6/openssh/patch-sandbox-darwin.c-apple-sandbox-named-external.diff
|
||||||
PATCH2: https://raw.githubusercontent.com/Homebrew/patches/d8b2d8c2612fd251ac6de17bf0cc5174c3aab94c/openssh/patch-sshd.c-apple-sandbox-named-external.diff
|
PATCH2: https://raw.githubusercontent.com/Homebrew/patches/d8b2d8c2612fd251ac6de17bf0cc5174c3aab94c/openssh/patch-sshd.c-apple-sandbox-named-external.diff
|
||||||
|
@ -65,10 +63,9 @@ build:
|
||||||
- --with-ssl-dir={{deps.openssl.org.prefix}}
|
- --with-ssl-dir={{deps.openssl.org.prefix}}
|
||||||
- --with-security-key-builtin
|
- --with-security-key-builtin
|
||||||
linux:
|
linux:
|
||||||
CONFIGURE_ARGS:
|
CONFIGURE_ARGS: --with-privsep-path={{prefix}}/var/lib/sshd
|
||||||
--with-privsep-path={{prefix}}/var/lib/sshd
|
|
||||||
darwin:
|
darwin:
|
||||||
CPPFLAGS: "$CPPFLAGS -D__APPLE_SANDBOX_NAMED_EXTERNAL__"
|
CPPFLAGS: '$CPPFLAGS -D__APPLE_SANDBOX_NAMED_EXTERNAL__'
|
||||||
provides:
|
provides:
|
||||||
- bin/scp
|
- bin/scp
|
||||||
- bin/sftp
|
- bin/sftp
|
||||||
|
|
Loading…
Reference in a new issue