Skip to content

Commit

Permalink
cmake: disable unwanted /lib64 behaviour
Browse files Browse the repository at this point in the history
- change defaults not to search or link against /lib{32,64} by
setting FIND_LIBRARY_USE_LIB{32,64}_PATH to FALSE
- be verbose
  • Loading branch information
wwwutz committed Feb 19, 2020
1 parent eab0f75 commit 1e69b8b
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions cmake.be0
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/usr/bin/env beesh

# BEE_VERSION cmake-3.16.2-0
# BEE_VERSION cmake-3.16.2-1

SRCURL[0]="https://cmake.org/files/v${PKGVERSION[2]}/cmake-${PKGVERSION}.tar.gz"

PATCHURL+=( /src/mariux/patches/cmake-3.16.2-color-off-verbose-on.patch )
PATCHURL+=( /src/mariux/patches/cmake-3.16.2-dont-find-lib64.patch )

# EXCLUDE+=()

Expand All @@ -21,11 +22,12 @@ PATCHURL+=( /src/mariux/patches/cmake-3.16.2-color-off-verbose-on.patch )
#}

mee_configure() {
${S}/configure \
${S}/configure \
--prefix=/usr \
--docdir=share/doc/cmake-${PKGVERSION[2]} \
--mandir=share/man \
--qt-gui
--qt-gui \
--verbose
}

#mee_build() {
Expand All @@ -45,13 +47,8 @@ mee_build_post() {
# 594 - CMake.CheckSourceTree (Failed)

make test || true

}

#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}

0 comments on commit 1e69b8b

Please sign in to comment.