qownnotes: bump to 19.6.3

This commit is contained in:
Tim Biermann 2019-06-20 19:27:23 +02:00
parent 41b2c2c29f
commit 359c3f3509
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 20 additions and 18 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33FBOa6lV9Tp1aQu39aAIZCC6cq6KyslgHLOgzv63+0Pkkb3BWgXzbVNHh4JQT8doPuSMx2gGA3jBf0vkyLKggQ=
SHA256 (Pkgfile) = 268bd3841ba1644d8688762b249a19a9523b14c86e916029cd7c359b69123ad8
RWSagIOpLGJF3/eFiigp4TyWKL/EpVwnUacP/LNPzA03L8SjkQIZe+dtYEwUHNQdCdOPW4fxi424Uuw1lNezPcG5tb+6jKp9JA0=
SHA256 (Pkgfile) = cd371c407c6c172683d046f95533b0bca046f7712d936937f4c23f163e3e94ec
SHA256 (.footprint) = d3916e94908249d530356c1e79cef586cdeacf7bd488278a3f0c61ab5be2aab3
SHA256 (qownnotes-19.6.2.tar.xz) = 0ed3fc30950cd706083817d39d9da020b09b87c4d7a9d10d0d11b3b1ecd525a2
SHA256 (qownnotes-19.6.3.tar.xz) = 773c519f50880dcb4f1ed365c4b0c3c60b8be5c762b417115999ab600e1f22e0

View File

@ -4,25 +4,27 @@
# Depends on: gcc glibc graphite2 icu qt5
name=qownnotes
version=19.6.2
version=19.6.3
release=1
source=(https://download.tuxfamily.org/$name/src/$name-$version.tar.xz)
build() {
cd $name-$version
cd $name-$version
echo "#define RELEASE \"CRUX\"" > release.h
/usr/lib/qt5/bin/qmake \
QMAKE_CFLAGS_RELEASE="${CFLAGS}" \
QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \
QMAKE_LFLAGS_RELEASE="${LDFLAGS}"
make
echo "#define RELEASE \"CRUX\"" > release.h
/usr/lib/qt5/bin/qmake \
QMAKE_CFLAGS_RELEASE="${CFLAGS}" \
QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \
QMAKE_LFLAGS_RELEASE="${LDFLAGS}"
make
install -D -m755 QOwnNotes "${PKG}/usr/bin/QOwnNotes"
install -D -m644 PBE.QOwnNotes.desktop "${PKG}/usr/share/applications/PBE.QOwnNotes.desktop"
install -D -m644 "images/icons/128x128/apps/QOwnNotes.png" "${PKG}/usr/share/pixmaps/QOwnNotes.png"
for format in {16x16,24x24,32x32,48x48,64x64,96x96,128x128,256x256,512x512}; do
install -D -m644 "images/icons/${format}/apps/QOwnNotes.png" "${PKG}/usr/share/icons/hicolor/$format/apps/QOwnNotes.png"
done
install -D -m644 "images/icons/scalable/apps/QOwnNotes.svg" "${PKG}/usr/share/icons/hicolor/scalable/apps/QOwnNotes.svg"
install -D -m755 QOwnNotes "${PKG}/usr/bin/QOwnNotes"
install -D -m644 PBE.QOwnNotes.desktop "${PKG}/usr/share/applications/PBE.QOwnNotes.desktop"
install -D -m644 "images/icons/128x128/apps/QOwnNotes.png" "${PKG}/usr/share/pixmaps/QOwnNotes.png"
for format in {16x16,24x24,32x32,48x48,64x64,96x96,128x128,256x256,512x512}; do
install -D -m644 "images/icons/${format}/apps/QOwnNotes.png" \
"${PKG}/usr/share/icons/hicolor/$format/apps/QOwnNotes.png"
done
install -D -m644 "images/icons/scalable/apps/QOwnNotes.svg" \
"${PKG}/usr/share/icons/hicolor/scalable/apps/QOwnNotes.svg"
}