Skip to content

Commit

Permalink
gst-plugins-base: Update from version 1.5.2 to 1.12.4
Browse files Browse the repository at this point in the history
update so that gstreamer and the plugins are the same version
  • Loading branch information
david committed Jun 13, 2018
1 parent 2f86922 commit 4d5f00d
Showing 1 changed file with 8 additions and 68 deletions.
76 changes: 8 additions & 68 deletions gst-plugins-base.be0
Original file line number Diff line number Diff line change
@@ -1,49 +1,18 @@
#!/usr/bin/env beesh

# BEE_VERSION gst-plugins-base-1.5.2-1

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)

###############################################################################
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.
# BEE_VERSION gst-plugins-base-1.12.4-0

SRCURL[0]="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-${PKGVERSION}.tar.xz"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
## The sources will be patched in the order of the array.

# PATCHURL+=()

###############################################################################
## Add filename patterns to the EXCLUDE array of files that should not
## be added to you package but may be present in the image directory.
PATCHURL+=("/src/mariux/beeroot/downloads/gstreamer_makefile.patch")

# EXCLUDE+=()

###############################################################################
## Uncomment the next statement, if the software may not be able to be build
## outside the source directory and need to be build inside the source
## directory.

# build_in_sourcedir

###############################################################################
## bee cannot detect buildtypes specified in subdirectories.
## Sometimes packages "hide" the real sources in a subdirectory named
## 'src' or 'cmake' or ..
## use 'sourcesubdir_append' to specify this directory if known.

# sourcesubdir_append src


###############################################################################
## Change the default (auto-detected) steps to
## extract, patch, configure/setup, build and install the software.
## Make sure the mee_install function does install everything to the
## image directory "${D}"
#BEE_BUILDTYPE=meson

#mee_extract() {
# bee_extract "${@}"
Expand All @@ -53,22 +22,11 @@ SRCURL[0]="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-bas
# bee_patch "${@}"
#}

##mee_configure() {
##
## # application wants qt5 and configure will add -I"/usr/local/include/QtGui -I/usr/local/include/QtCore -I/usr/local/include/QtWidgets"
## # however, we have
## # /usr/local/include/QtGui/qapplication.h from qt4
## # /usr/local/include/QtWidgets/qapplication.h from qt5
## # qt4 had QApplication::setQuitOnLastWindowClosed(bool) as a class method,
## # qt5 has QApplication::setQuitOnLastWindowClosed(bool) innerited from QGuiApplication::setQuitOnLastWindowClosed(bool)
## # so with the order by configure we have /usr/local/include/QtWidgets/qapplication.h masked by obsolete /usr/local/include/QtGui/qapplication.h
## # and will undefined symbol get QApplication::setQuitOnLastWindowClosed(bool) at link time
## # so make sure, we see /usr/local/include/QtWidgets first.
##
## export CPPFLAGS='-I/usr/local/include/QtWidgets'
##
## bee_configure
##}
mee_configure() {
bee_configure \
--with-package-name="GStreamer Base Plugins ${PKGVERSION} BLFS" \
--with-package-origin="http://www.linuxfromscratch.org/blfs/view/svn/"
}

#mee_build() {
# bee_build
Expand All @@ -78,21 +36,3 @@ SRCURL[0]="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-bas
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
##
## Additional hints:
##
## The name of this bee-file should follow the following naming convention:
## pkgname-pkgversion-pkgrevision.bee
##
## You may remove all comments as long as SRCURL[0]="" is set.
##
## Everything in this file will be executed in a bash environment.
##
## Build the package by executing
## './pkg-version-N.bee' or
## 'beesh ./pkg-version-N.bee'
##
## see http://beezinga.org/
##

0 comments on commit 4d5f00d

Please sign in to comment.