-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #688 from mariux64/add-qtwebkit-and-new-rev-qtlinks
Add QtWebKit and new rev qtlinks
- Loading branch information
Showing
3 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/bin/env beesh | ||
|
||
# BEE_VERSION qtlinks-1.0.0-4 | ||
|
||
mee_install() { | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION qtwebkit-5.9.0-0 | ||
|
||
SRCURL[0]="https://download.qt.io/community_releases/${PKGVERSION[2]}/${PKGVERSION}-final/qtwebkit-opensource-src-${PKGVERSION}.tar.xz" | ||
|
||
# PATCHURL+=() | ||
|
||
# EXCLUDE+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
mee_configure() { | ||
qmake ${S}/WebKit.pro | ||
} | ||
|
||
mee_build() { | ||
make ${BEE_MAKEFLAGS} | ||
} | ||
|
||
mee_install() { | ||
make INSTALL_ROOT=${D} install | ||
} | ||
## by default this may be 'make install DESTDIR="${D}"' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters