# Template file for 'gstreamer1' pkgname=gstreamer1 version=1.14.4 revision=3 wrksrc="gstreamer-${version}" build_style=gnu-configure build_helper="gir" configure_args="--disable-valgrind --enable-docbook --with-package-origin=http://www.voidlinux.org $(vopt_enable gir introspection)" hostmakedepends="automake gettext-devel libtool pkg-config flex python docbook-xsl glib-devel" makedepends="libxml2-devel libglib-devel" short_desc="Core GStreamer libraries and elements (1.x)" maintainer="Juan RP " license="LGPL-2.0-or-later" homepage="https://gstreamer.freedesktop.org" distfiles="${homepage}/src/gstreamer/gstreamer-${version}.tar.xz" checksum=f94f6696c5f05a3b3a9183e39c5f5c0b779f75a04c0efa497e7920afa985ffc7 # Package build options build_options="gir" case "$XBPS_TARGET_MACHINE" in i686-musl|x86_64-musl) build_options_default+=" gir" ;; *-musl) ;; *) build_options_default+=" gir" ;; esac pre_configure() { # Remove a non-existing include path from the gstreamer.pc.in file, # or otherwise building pkgs which enable -Werror fail to build with # gcc-6.2.1 which issues a warning for non existing -I/some/path args. # There is no ./usr/lib/gstreamer-1.0/include path in this pkg. sed -i pkgconfig/gstreamer.pc.in \ -e 's; -I${libdir}/gstreamer-@GST_API_VERSION@/include;;' NOCONFIGURE=1 ./autogen.sh } pre_build() { # Export paths for gobject introspection export GIR_EXTRA_LIBS_PATH="${wrksrc}/gst/.libs:${wrksrc}/libs/gst/base/.libs" } gstreamer1-devel_package() { depends="${makedepends} ${sourcepkg}>=${version}_${revision}" short_desc+=" - development files" pkg_install() { vmove usr/include vmove usr/lib/pkgconfig vmove "usr/lib/*.so" vmove usr/share/gtk-doc vmove usr/share/aclocal if [ "$build_option_gir" ]; then vmove "usr/share/gir*" fi } }