Skip to content

cmake: disable unwanted /lib64 behaviour #1711

Merged
merged 1 commit into from
Feb 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions cmake.be0
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/env beesh

# BEE_VERSION cmake-3.16.2-0
# BEE_VERSION cmake-3.16.2-2

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 )

# EXCLUDE+=()
PATCHURL+=( /src/mariux/patches/cmake-3.16.2-dont-find-lib64.patch )
PATCHURL+=( /src/mariux/patches/cmake-3.16.2-gnu-install-dirs-lib64.patch )

# build_in_sourcedir

Expand All @@ -25,7 +25,8 @@ mee_configure() {
--prefix=/usr \
--docdir=share/doc/cmake-${PKGVERSION[2]} \
--mandir=share/man \
--qt-gui
--qt-gui \
--verbose
}

#mee_build() {
Expand Down