summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2021-05-14 23:08:57 +1000
committerMatthew Waters <matthew@centricular.com>2021-05-14 23:08:57 +1000
commit8445166561d5e9f849314adf80913a058b20abe0 (patch)
tree48f57980cb0959b25e74c092ed42a4592cb2782b /packages
parent5ad371ab5e7c6473b8738c3172b44dca9312c63a (diff)
macos/universal: fix pkg-config packaging
When building for universal, the build-tools pkg-config is not sufficient as it is not built for the universal archs. We need to build our own version to distribute. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/701>
Diffstat (limited to 'packages')
-rw-r--r--packages/gstreamer-1.0-core.package2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gstreamer-1.0-core.package b/packages/gstreamer-1.0-core.package
index a40dd5cb..90b7a9c6 100644
--- a/packages/gstreamer-1.0-core.package
+++ b/packages/gstreamer-1.0-core.package
@@ -18,7 +18,7 @@ class Package(custom.GStreamer, package.Package):
files_devel = ['gstreamer-1.0', 'gst-plugins-base-1.0:plugins_core_devel',
'gst-plugins-good-1.0:plugins_core_devel', 'gst-plugins-bad-1.0:plugins_core_devel']
platform_files = {
- Platform.DARWIN: ['gstreamer-1.0-osx-framework'],
+ Platform.DARWIN: ['gstreamer-1.0-osx-framework', 'pkg-config'],
Platform.IOS: ['gstreamer-ios-templates'],
Platform.ANDROID: ['gst-android-1.0'],
Platform.LINUX: ['bash-completion'],