Browse Source

graphics/qcomicbook: Fixed downlad link.

Thanks to B. Watson and Thomas Morper for the png fixes

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
pull/25/head
Matteo Bernardini 9 years ago
committed by David Spencer
parent
commit
c3b77fc680
  1. 10
      graphics/qcomicbook/qcomicbook.SlackBuild
  2. 2
      graphics/qcomicbook/qcomicbook.info

10
graphics/qcomicbook/qcomicbook.SlackBuild

@ -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 \

2
graphics/qcomicbook/qcomicbook.info

@ -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…
Cancel
Save