1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 04:50:09 +00:00

corrected debian dependencies for lack of libglib-2.0

This commit is contained in:
Stephen Gaito 2020-06-01 11:28:38 +01:00
parent a73211fb9b
commit 82aeeac8c7
2 changed files with 11 additions and 17 deletions

View File

@ -66,17 +66,17 @@ maintainerValue="$(git config --get user.name) <$(git config --get user.email)>"
# Now create the control file # Now create the control file
# #
echo "Package: pdf2htmlEX" > $controlFile echo "Package: pdf2htmlEX" > $controlFile
echo "Version: 0:0.$versionValue-0" >> $controlFile echo "Version: 0:0.$versionValue-0" >> $controlFile
echo "Distribution: $releaseValue" >> $controlFile echo "Distribution: $releaseValue" >> $controlFile
echo "Architecture: $architectureValue" >> $controlFile echo "Architecture: $architectureValue" >> $controlFile
echo "Section: universe/web" >> $controlFile echo "Section: universe/web" >> $controlFile
echo "Priority: optional" >> $controlFile echo "Priority: optional" >> $controlFile
echo "Essential: no" >> $controlFile echo "Essential: no" >> $controlFile
echo "Depends: libcairo2, libpng16-16, libjpeg-turbo8, libxml2" >> $controlFile echo "Depends: libglib2.0-0, libcairo2, libpng16-16, libjpeg-turbo8, libxml2" >> $controlFile
echo "Maintainer: $maintainerValue" >> $controlFile echo "Maintainer: $maintainerValue" >> $controlFile
echo "Homepage: http://github.com/pdf2htmlEX/pdf2htmlEX" >> $controlFile echo "Homepage: http://github.com/pdf2htmlEX/pdf2htmlEX" >> $controlFile
echo "Description: Converts PDF to HTML without losing format" >> $controlFile echo "Description: Converts PDF to HTML without losing format" >> $controlFile
echo " pdf2htmlEX converts PDF to HTML while retaining text, format & style as much as possible" >> $controlFile echo " pdf2htmlEX converts PDF to HTML while retaining text, format & style as much as possible" >> $controlFile
# Create the (empty) conffiles # Create the (empty) conffiles

View File

@ -91,12 +91,6 @@ set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS}
-lgio-2.0 -lgio-2.0
) )
# -llcms2
# -lz
# -llcms2
# -lspiro
# -luninameslist
# debug build flags (overwrite default cmake debug flags) # debug build flags (overwrite default cmake debug flags)
set(CMAKE_C_FLAGS_DEBUG "-ggdb -pg") set(CMAKE_C_FLAGS_DEBUG "-ggdb -pg")
set(CMAKE_CXX_FLAGS_DEBUG "-ggdb -pg") set(CMAKE_CXX_FLAGS_DEBUG "-ggdb -pg")