Package Details: meteorite 0.11-3

Git Clone URL: https://aur.archlinux.org/meteorite.git (read-only, click to copy)
Package Base: meteorite
Description: A Matroska/MKV repair engine
Upstream URL: http://www.mkvrepair.com/
Licenses: GPL
Submitter: Freso
Maintainer: Freso (bobpaul)
Last Packager: Freso
Votes: 0
Popularity: 0.000000
First Submitted: 2016-10-22 18:32 (UTC)
Last Updated: 2021-01-12 14:14 (UTC)

Latest Comments

1 2 Next › Last »

simona commented on 2023-12-13 19:14 (UTC)

src/MeteoriteMain.cpp:155:25: error: ‘Create’ is not a member of ‘wxThreadHelper’

Gregoire commented on 2022-11-28 16:33 (UTC)

In order to compil I had to change wxThreadHelper::Create(); to wxThreadHelper::CreateThread(); in MeteoriteMain.cpp and then I found out that my video wasn't in mkv...

limokig421 commented on 2021-10-28 16:10 (UTC)

builds and installs fine, but crashes as soon as I use the drop target:

17:57:04: Warning: Mismatch between the program and library build versions detected.
The library used 3.0 (wchar_t,compiler with C++ ABI 1014,wx containers,compatible with 2.8),
and your program used 3.0 (wchar_t,compiler with C++ ABI 1016,wx containers,compatible with 2.8).
[xcb] Unknown sequence number while processing reply
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
meteorite: xcb_io.c:725: _XReply: Assertion `!xcb_xlib_threads_sequence_lost' failed.
zsh: abort (core dumped)  meteorite

Freso commented on 2017-10-18 14:59 (UTC)

@bobpaul, you're co-maintainer now. Feel free to update the package with patch and PKGBUILD. :) (Remember to run `makepkg --printsrcinfo > .SRCINFO` before `git push`ing!)

Freso commented on 2017-10-16 07:19 (UTC)

If using a pre-built binary, the package name should be meteorite-bin though. I'll look at trying the patch out later. Thanks!

bobpaul commented on 2017-10-16 01:15 (UTC)

Here's a gist with the patch and an updated PKGBUILD: https://gist.github.com/anonymous/73ea6f175b9d1325cfab9bbc48249436

bobpaul commented on 2017-10-16 00:13 (UTC)

So the reason it won't compile is line 1182 in meteorite.cpp. It says "return false;" but modern compilers aren't happy with this and the line needs to be changed to read "return NULL;"

bobpaul commented on 2017-10-15 23:54 (UTC)

So for now, here's a working binary PKGBUILD for 64bit. pkgname=meteorite pkgver=0.11 pkgrel=1 pkgdesc='A Matroska/MKV repair engine' arch=('x86_64') url='http://www.mkvrepair.com/' license=('GPL') depends=('wxgtk') source=("https://downloads.sourceforge.net/$pkgname/Meteorite-v$pkgver-Linux_$arch.tar.bz2") md5sums=('89c6139c5fa991a0c8d2170b75420fa4') package() { cd "$srcdir/Meteorite" install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname" }

bobpaul commented on 2017-10-15 23:39 (UTC)

Wait, you uploaded a PKGBUILD even though it doesn't work? Easiest fix is probably just use the binary tarbal instead of the source tarbal: Meteorite-v0.11-Linux_x86_64.tar.bz2