1
0
mirror of https://github.com/Cloudef/bemenu synced 2024-11-22 17:02:05 +01:00

make: osx uses install_name instead of soname ...

This commit is contained in:
Jari Vetoniemi 2020-05-07 14:48:22 +09:00
parent d5ad43bae5
commit 474e7c0965
2 changed files with 5 additions and 2 deletions

@ -50,9 +50,9 @@ brew install make pkg-config
# You may need to setup your pkg-config to point to the brew version of the libraries # You may need to setup your pkg-config to point to the brew version of the libraries
# For example to build curses backend, you'd do: # For example to build curses backend, you'd do:
PKG_CONFIG_PATH="/usr/local/opt/ncurses/lib/pkgconfig" gmake curses PKG_CONFIG_PATH="/usr/local/opt/ncurses/lib/pkgconfig" sh build-osx.sh curses
# Other than that, follow the normal build steps, but use gmake instead of make # Other than that, follow the normal build steps, but use `build-osx.sh` instead of make
``` ```
## Dependencies ## Dependencies

3
build-osx.sh Normal file

@ -0,0 +1,3 @@
#!/bin/sh
sed 's/-soname/-install_name/' GNUmakefile > GNUmakefile.osx
gmake -f GNUmakefile.osx "$@"