From e79650845fed368a397edfa89da7117a5c5772a3 Mon Sep 17 00:00:00 2001 From: Matthew Budd Date: Wed, 1 Jul 2020 20:33:32 -0400 Subject: [PATCH] Added install commands in pipeline script --- pipelines/linux_build.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pipelines/linux_build.sh b/pipelines/linux_build.sh index c6421d03..7d88db3e 100755 --- a/pipelines/linux_build.sh +++ b/pipelines/linux_build.sh @@ -99,7 +99,17 @@ qmake PREFIX=$INSTALL_PREFIX/usr .. # -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \ # .. make -j `nproc` -make install +#make install + +# Install Files +cd .. # cd out of build +cp -f ./build/fceux $INSTALL_PREFIX/usr/bin/. +cp -a ./output/* $INSTALL_PREFIX/usr/share/fceux/. +cp -a ./fceux.png $INSTALL_PREFIX/usr/share/pixmaps/. +cp -a ./fceux.desktop $INSTALL_PREFIX/usr/share/applications/. +cp -a ./documentation/fceux.6 $INSTALL_PREFIX/usr/man/man6/. +cp -a ./documentation/fceux-net-server.6 $INSTALL_PREFIX/usr/man/man6/. + # Debug via ssh if necessary if [ ! -z $APPVEYOR_SSH_BLOCK ]; then