Add detailed version/build number to appimage and debian package filenames
This commit is contained in:
parent
b58e58b35f
commit
0269107830
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# $1 is the binary location, $2 is the arch
|
# $1 is the binary location, $2 is the arch, $3 is the version
|
||||||
mkdir out
|
mkdir out
|
||||||
mkdir -p appimage/NotePost.AppDir/usr/lib/notepost
|
mkdir -p appimage/NotePost.AppDir/usr/lib/notepost
|
||||||
rm -rf appimage/NotePost.AppDir/usr/lib/notepost
|
rm -rf appimage/NotePost.AppDir/usr/lib/notepost
|
||||||
@ -8,4 +8,4 @@ rsync -rv "$1" appimage/NotePost.AppDir/usr/lib/notepost
|
|||||||
chmod +x appimage/NotePost.AppDir/AppRun
|
chmod +x appimage/NotePost.AppDir/AppRun
|
||||||
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O appimagetool
|
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O appimagetool
|
||||||
chmod +x appimagetool
|
chmod +x appimagetool
|
||||||
./appimagetool appimage/NotePost.AppDir "out/NotePost_$2.AppImage"
|
./appimagetool appimage/NotePost.AppDir "out/NotePost_$2_$3.AppImage"
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# $1 is the app source location, $2 is the svg icon, $3 is the app version code
|
# $1 is the app source location, $2 is the svg icon, $3 is the app version code, $4 is the build number
|
||||||
mkdir -p out
|
mkdir -p out
|
||||||
rm -rf debian/usr/share/notepost
|
rm -rf debian/usr/share/notepost
|
||||||
mkdir -p debian/usr/share/notepost
|
mkdir -p debian/usr/share/notepost
|
||||||
mkdir -p debian/usr/share/doc/notepost
|
mkdir -p debian/usr/share/doc/notepost
|
||||||
rsync -rv "$1" debian/usr/share/notepost
|
rsync -rv "$1" debian/usr/share/notepost
|
||||||
cp debian/DEBIAN/copyright debian/usr/share/doc/notepost/
|
cp debian/DEBIAN/copyright debian/usr/share/doc/notepost/
|
||||||
sed -i "s/Version:\s[0-9.\-]\+/Version: $3+b$BUILD_NUMBER/" debian/DEBIAN/control
|
sed -i "s/Version:\s[0-9.\-]\+/Version: $3+b$4/" debian/DEBIAN/control
|
||||||
cp "$2" debian/usr/share/notepost/logo.svg
|
cp "$2" debian/usr/share/notepost/logo.svg
|
||||||
dpkg-deb -b debian "out/notepost_$3+b${BUILD_NUMBER}_all.deb"
|
dpkg-deb -b debian "out/notepost_$3+b${4}_all.deb"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user