aerc.rjarry: bump to 0.10.0, use -modcacherw
[kiss-trunc88.git] / neovim / build
blobc15fe8bbde6a2c24bf28394287290fd64097615c
1 #!/bin/sh -e
3 # Due to some changes in the package manager/pigz, we have to...
4 unset DESTDIR
5 mkdir -p bin
6 ln -s /usr/bin/pigz "$PWD/bin/gunzip"
7 export PATH="$PWD/bin:$PATH"
9 # Remove mandatory gettext dependency.
10 sed -i 's/^/#/' src/nvim/po/CMakeLists.txt
12 make \
13 CMAKE_BUILD_TYPE=None \
14 CMAKE_INSTALL_PREFIX=/usr \
15 -Wno-dev
17 make DESTDIR="$1" install
19 # CMAKE_INSTALL_LIBDIR is not respected
20 mv -f "$1/usr/lib64" "$1/usr/lib"