Skip to content
Permalink
83e0d7979c
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
@wwwutz
Latest commit 6fdc6a2 Feb 11, 2020 History
- fixed SRCURL
2 contributors

Users who have contributed to this file

@thomas @wwwutz
executable file 41 lines (27 sloc) 694 Bytes
#!/usr/bin/env beesh
# BEE_VERSION qwt-6.1.4-1
#SRCURL[0]="https://downloads.sourceforge.net/project/qwt/qwt/${PKGVERSION}/qwt-${PKGVERSION}.tar.bz2"
SRCURL[0]="https://beehive.molgen.mpg.de/4fb1852f694420e3ab9c583526edecc5/qwt-6.1.4.tar.bz2"
# PATCHURL[0]=""
# BEE_CONFIGURE=compat
# BEE_BUILDTYPE=
EXCLUDE=( $(pkg-config Qt5Core --variable=prefix)/doc )
build_in_sourcedir
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_patch_post() {
sed -i ${S}/qwtconfig.pri -e '/^\s\s*QWT_INSTALL_PREFIX/ s,QWT,# QWT,'
}
mee_configure() {
qmake
}
mee_build() {
make ${BEE_MAKEFLAGS}
}
mee_install() {
make install INSTALL_ROOT=${D}
}