diff options
| -rw-r--r-- | docs/hacking/osx.rst | 5 | ||||
| -rw-r--r-- | pkg/bundles/build.mk | 2 | 
2 files changed, 6 insertions, 1 deletions
| diff --git a/docs/hacking/osx.rst b/docs/hacking/osx.rst index 45f1823e..e5bd306a 100644 --- a/docs/hacking/osx.rst +++ b/docs/hacking/osx.rst @@ -33,6 +33,11 @@ In OSX, we're using ``pywebview`` for the GUI launcher, that depends on ``pyobjc  * Install the rest of dependencies as usual. +You also want to build the thirdparty binaryes (openvpn, gpg):: + +  cd pkg/thirdparty/gnupg && ./build_gnupg.sh + +  After installing that, you should be able to build the bundle::    make bundle_osx diff --git a/pkg/bundles/build.mk b/pkg/bundles/build.mk index 8349a611..d83339e7 100644 --- a/pkg/bundles/build.mk +++ b/pkg/bundles/build.mk @@ -72,7 +72,7 @@ bundle_osx_missing:  	cp -r $(DIST_VERSION)/apps/helpers/openvpn/* $(OSX_RES)/  	wget https://downloads.leap.se/thirdparty/osx/openvpn/openvpn -O $(OSX_RES)/openvpn.leap  	chmod +x $(OSX_RES)/openvpn.leap -	cp ~/src/gnupg-1.4.20/g10/gpg $(OSX_RES)/gpg +	cp ~/leap_thirdparty_build/gpg $(OSX_RES)/gpg  	chmod +x $(OSX_RES)/gpg  bundle_osx_pkg: | 
