mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
graphics/qcomicbook: Fixed downlad link.
Thanks to B. Watson and Thomas Morper for the png fixes Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
d1176fbc1f
commit
c3b77fc680
2 changed files with 11 additions and 1 deletions
|
@ -73,6 +73,16 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
# Icon info in the desktop file should not have a file extension
|
||||
sed -i 's/\.png$//' data/qcomicbook.desktop
|
||||
|
||||
# Remove the iCCP chunk from the PNG images to avoid warnings
|
||||
for i in data/*.png; do
|
||||
mv $i $i.old.png
|
||||
convert $i.old.png $i
|
||||
rm $i.old.png
|
||||
done
|
||||
|
||||
cmake . \
|
||||
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS -DNDEBUG" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PRGNAM="qcomicbook"
|
||||
VERSION="0.9.0"
|
||||
HOMEPAGE="http://qcomicbook.org"
|
||||
DOWNLOAD="http://qcomicbook.org/releases/qcomicbook-0.9.0.tar.gz"
|
||||
DOWNLOAD="http://ponce.cc/slackware/sources/repo/qcomicbook-0.9.0.tar.gz"
|
||||
MD5SUM="b209bfb081afd4c06eedb6bb08f957f0"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
|
|
Loading…
Reference in a new issue