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:
parent
d5ad43bae5
commit
474e7c0965
@ -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
|
||||
# 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
|
||||
|
3
build-osx.sh
Normal file
3
build-osx.sh
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
sed 's/-soname/-install_name/' GNUmakefile > GNUmakefile.osx
|
||||
gmake -f GNUmakefile.osx "$@"
|
Loading…
Reference in New Issue
Block a user