Search Criteria
Package Details: gstreamer0.10-base 0.10.36-13
Package Actions
Git Clone URL: | https://aur.archlinux.org/gstreamer0.10-base.git (read-only, click to copy) |
---|---|
Package Base: | gstreamer0.10-base |
Description: | GStreamer Multimedia Framework Base plugin libraries |
Upstream URL: | http://gstreamer.freedesktop.org/ |
Licenses: | LGPL |
Submitter: | yurikoles |
Maintainer: | pfeifferj |
Last Packager: | pfeifferj |
Votes: | 131 |
Popularity: | 0.23 |
First Submitted: | 2017-01-26 13:45 (UTC) |
Last Updated: | 2025-03-05 18:17 (UTC) |
Dependencies (13)
- gstreamer0.10AUR
- libxv
- orc
- alsa-lib (make)
- cdparanoia (cdparanoia-overreadAUR) (make)
- gobject-introspection (make)
- gstreamer0.10AUR (make)
- libtheora (libtheora-gitAUR) (make)
- libvisualAUR (make)
- libvorbis (libvorbis-aotuvAUR, libvorbis-aotuv-lancerAUR, libvorbis-gitAUR) (make)
- libxv (make)
- orc (make)
- pango (pango-gitAUR) (make)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 .. 13 Next › Last »
cable commented on 2020-04-15 22:02 (UTC)
I can confirm tsani's modification works for me! Thanks!
newtoarch commented on 2020-04-08 00:45 (UTC)
I tried following the two fixes (@tsani's and @Static_Rocket's), but unfortunately compiling still fails. Here's the paste: https://pastebin.com/Pm7uZ9es
Here's what my build() function looks after the change: build() { cd ${_pkgname}-${pkgver} NOCONFIGURE=1 ./autogen.sh ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static --enable-experimental --disable-gnome_vfs --disable-gtk-doc find . -type f -exec sed -i -e 's/\#include/#include/g' {} \; make sed -e 's/^SUBDIRS_EXT =.*/SUBDIRS_EXT =/' -i Makefile }
tsani commented on 2020-04-01 20:38 (UTC)
I used Static_Rocket's fix as well, but slightly adjusted with
-type f
. To recap what worked for me: I added the following line to thebuild
function in thePKGBUILD
, right before the call tomake
:Hope this helps others who are stuck until this gets resolved in this package or upstream.
Static_Rocket commented on 2020-03-20 05:17 (UTC)
@nipsky Hey dude, I noticed some people have misinterpreted my quick fix so I narrowed it down and submitted a patch to the package maintainer. Assuming you applied it correctly, please link the full output of makepkg (preferably via a pastebin) and I'll try to help as best I can. Otherwise please wait a few days while the maintainer tests & implements my patch and then give it another shot.
nipsky commented on 2020-03-19 12:33 (UTC)
Hi, I applied Static_Rockets fix, but compiling fails for me now with a different error:
Static_Rocket commented on 2020-03-19 02:01 (UTC)
A little more detective work has allowed me to narrow this problem down to this line in these Makefiles:
For some reason the escape character is being interpreted as literal in these makefiles so when glib-mkenums makes the required files it carries this invalid character. I suppose this should be reported upstream.
lukethisshit commented on 2020-03-04 19:32 (UTC)
@matbonn you have to add the find command provided from @Static_Rocket inside of the PKGBUILD file, inside the build function one line above the make command. Like this it worked for me.
THX @Static_Rocket for the dirty fix!
matbonn commented on 2020-03-03 19:57 (UTC) (edited on 2020-03-03 20:06 (UTC) by matbonn)
@warsh - So I went to /tmp/trizen-username/ and ran this "sudo find . -exec sed -i -e 's/\#include/#include/g' {} \;" all I got was ..:not a regular file
I ran the above just after it fails and then type "Y" for try again hoping it would use the newly modded files. What did I do wrong? Thanks
To be fair I don't think my error is the same https://pastebin.com/WB8BgW53
k43pxhv commented on 2020-03-01 07:40 (UTC)
@Static_Rocket Can confirm that the quick and dirty slap fixed the compilation issue. Thank you :-)
Static_Rocket commented on 2020-02-28 20:33 (UTC)
Yeah, this package is foobared at the moment. Apparently all the files in the package that are auto-generated by glib-mkenums have include statements preceded by a backslash that will make the compiler go apeshit.
Quick and dirty fix: Slap a
find . -exec sed -i -e 's/\\#include/#include/g' {} \;
right before the make command in the build function.« First ‹ Previous 1 2 3 4 5 6 7 8 .. 13 Next › Last »