Skip to content
Permalink
master
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
 
 
Cannot retrieve contributors at this time
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
}