Skip to content
Permalink
1b740d97b9
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
- be0ify
- fix QPainterPath compile fail
- build in build dir
- rm *.html
- SILENCE deprecate INFIDEL!
1 contributor

Users who have contributed to this file

executable file 38 lines (28 sloc) 901 Bytes
#!/usr/bin/env beesh
# BEE_VERSION qpdfview-0.4.18-0
# SRCURL[0]="https://launchpad.net/qpdfview/trunk/0.4.18/+download/qpdfview-0.4.18.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/4d63ee0095e939602f9bf4759ae57953/qpdfview-0.4.18.tar.gz"
# sources/model.h:46:22: error: field ‘boundary’ has incomplete type ‘QPainterPath’
PATCHURL+=("https://beehive.molgen.mpg.de/73f940961e87b43986dea08421064528/qpdfview-0.4.18-fix-qtpainterpath.patch")
#build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
# lrelease qpdfview.pro
qmake \
${S}/qpdfview.pro \
CONFIG+="without_djvu" \
QMAKE_CXXFLAGS=-Wno-deprecated-declarations
}
mee_build() {
make ${BEE_MAKEFLAGS}
}
mee_install() {
make INSTALL_ROOT=${D} install
cd ${D} && rm -rvf usr/share/qpdfview
}