Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build for Halium #742

Open
wants to merge 3 commits into
base: scarthgap
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ pkgconfig.generate(
dataonly: true,
)

if false
custom_target('build-apns-conf',
build_by_default: true,
output: 'apns-conf.xml',
Expand All @@ -32,6 +33,7 @@ custom_target('build-apns-conf',
install: true,
install_dir: pkgdatadir,
)
endif

install_data(
[sp_xml_db, 'serviceproviders.2.dtd'],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/${BPN}:"

#Mer uses their own version of MBPI which has some elements added. So we want to use their version only in case we're using their oFono version. In other cases where we use upstream oFono we want to use the regular MBPI from Yocto.

SRC_URI:halium = " \
Tofee marked this conversation as resolved.
Show resolved Hide resolved
git://github.com/sailfishos/mobile-broadband-provider-info.git;protocol=https;branch=master \
file://meson.build \
file://meson.build;subdir=git/${BPN} \
"

S:halium = "${WORKDIR}/git/${PN}"
S:halium = "${WORKDIR}/git/${BPN}"

SRCREV:halium = "fe500f1b19e8525d09655a38ac111a0fe127b5f9"
LIC_FILES_CHKSUM:halium = "file://COPYING;md5=87964579b2a8ece4bc6744d2dc9a8b04"

Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ COMPATIBLE_MACHINE = "^halium$"
# This recipe acts as a replacement for the ofono recipe
PROVIDES += "ofono"
RPROVIDES:${PN} += "ofono"
RPROVIDES:${PN}-tests += "ofono-tests"

Tofee marked this conversation as resolved.
Show resolved Hide resolved
SRC_URI = " \
git://github.com/sailfishos/ofono.git;protocol=https;branch=master \
Expand Down