mirror of
https://github.com/digarok/buckshot.git
synced 2024-12-04 17:51:43 +00:00
make linux bundler fixes
This commit is contained in:
parent
65514d941e
commit
d5b14e9d84
@ -1,19 +1,22 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
BUILDDIR=~/buckshot-dist-linux
|
VERSION=0.2
|
||||||
LIBDIR=$BUILDDIR/lib
|
BUILDDIR=~
|
||||||
PLATFORMDIR=$BUILDDIR/platforms
|
DISTDIR=$BUILDDIR/buckshot-dist-linux
|
||||||
|
LIBDIR=$DISTDIR/lib
|
||||||
|
PLATFORMDIR=$DISTDIR/platforms
|
||||||
|
|
||||||
|
|
||||||
rm -rf $BUILDDIR
|
rm -rf $DISTDIR
|
||||||
mkdir -p $BUILDDIR
|
mkdir -p $DISTDIR
|
||||||
mkdir -p $LIBDIR
|
mkdir -p $LIBDIR
|
||||||
mkdir -p $PLATFORMDIR
|
mkdir -p $PLATFORMDIR
|
||||||
|
|
||||||
cp build-buckshot-Desktop_Qt_5_7_0_GCC_64bit-Release/buckshot $BUILDDIR
|
cp build-buckshot-Desktop_Qt_5_7_0_GCC_64bit-Release/buckshot $DISTDIR
|
||||||
cp build-buckshot-Desktop_Qt_5_7_0_GCC_64bit-Release/b2d $BUILDDIR
|
cp build-buckshot-Desktop_Qt_5_7_0_GCC_64bit-Release/b2d $DISTDIR
|
||||||
cp platform/linux/buckshot.sh $BUILDDIR
|
cp build-buckshot-Desktop_Qt_5_7_0_GCC_64bit-Release/Cadius $DISTDIR
|
||||||
cp doc/README.LINUX $BUILDDIR
|
cp platform/linux/buckshot.sh $DISTDIR
|
||||||
|
cp doc/README.LINUX $DISTDIR
|
||||||
|
|
||||||
# As reported by ldd
|
# As reported by ldd
|
||||||
cp /home/builder/Qt/5.7/gcc_64/lib/libicudata.so.56 $LIBDIR
|
cp /home/builder/Qt/5.7/gcc_64/lib/libicudata.so.56 $LIBDIR
|
||||||
@ -25,5 +28,6 @@ cp /home/builder/Qt/5.7/gcc_64/lib/libQt5Gui.so.5 $LIBDIR
|
|||||||
cp /home/builder/Qt/5.7/gcc_64/lib/libQt5Widgets.so.5 $LIBDIR
|
cp /home/builder/Qt/5.7/gcc_64/lib/libQt5Widgets.so.5 $LIBDIR
|
||||||
cp /home/builder/Qt/5.7/gcc_64/lib/libQt5XcbQpa.so.5 $LIBDIR
|
cp /home/builder/Qt/5.7/gcc_64/lib/libQt5XcbQpa.so.5 $LIBDIR
|
||||||
cp /home/builder/Qt/5.7/gcc_64/plugins/platforms/libqxcb.so $PLATFORMDIR
|
cp /home/builder/Qt/5.7/gcc_64/plugins/platforms/libqxcb.so $PLATFORMDIR
|
||||||
cp -r /home/builder/Qt/5.7/gcc_64/plugins/imageformats $BUILDDIR
|
cp -r /home/builder/Qt/5.7/gcc_64/plugins/imageformats $DISTDIR
|
||||||
|
|
||||||
|
tar -cvjf buckshot-dist-linux_$VERSION.tar.bz2 -C $BUILDDIR `basename $DISTDIR`
|
||||||
|
Loading…
Reference in New Issue
Block a user