xournalpp-git: remove crazy stuff

This commit is contained in:
Gabriel Ebner 2021-01-11 15:17:01 +01:00
parent b0ce23ee53
commit 72bf7a66e7
2 changed files with 2 additions and 16 deletions

View File

@ -28,14 +28,9 @@ prepare() {
} }
build() { build() {
if [ -z "$XDG_CONFIG_HOME" ]; then
configdir=".config"
else
configdir="$(realpath --relative-to="$HOME" "$XDG_CONFIG_HOME")"
fi
cd "${srcdir}/${_pkgname}/build" cd "${srcdir}/${_pkgname}/build"
cmake -DCMAKE_INSTALL_PREFIX="/usr/" -DDEV_CONFIG_DIR="$configdir/xournalpp" -DENABLE_CPPUNIT=ON .. cmake -DCMAKE_INSTALL_PREFIX="/usr/" -DENABLE_CPPUNIT=ON ..
cmake --build . --target pot cmake --build . --target pot
cmake --build . --target translations cmake --build . --target translations
cmake --build . cmake --build .

View File

@ -3,16 +3,7 @@ post_install() {
} }
post_upgrade() { post_upgrade() {
configs=$(find /home/ /root/ -maxdepth 2 -name ".xournalpp" 2> /dev/null) :
if ! [ -z "$configs" ]; then
cat << EOF
WARNING: Default config folder moved from \$HOME/.xournalpp to \$HOME/\$XDG_CONFIG_HOME/xournalpp (default .config)
Found following config paths:
EOF
echo "$configs"
echo
fi
} }
post_remove() { post_remove() {