Interest in AppImage Builds?

The place to discuss linux version of MakeMKV
Post Reply
mastercactapus
Posts: 1
Joined: Fri Jul 19, 2019 3:08 am

Interest in AppImage Builds?

Post by mastercactapus » Fri Jul 19, 2019 3:19 am

I've had an automated build that creates an AppImage (portable binary that "just works" on Linux) out of each release since version 1.10.9, and I'm wondering if:

1. Is it acceptable/possible for me to share those binaries here? (or some S3 bucket, something like that)
2. If so, would there be interest in that?

If sharing the AppImage itself is a no-go, I can share the script/process of building it for anyone interested too.

Thanks!

Woodstock
Posts: 10072
Joined: Sun Jul 24, 2011 11:21 pm

Re: Interest in AppImage Builds?

Post by Woodstock » Fri Jul 19, 2019 1:10 pm

It's entirely up to the author, and hopefully he'll see your message. However, I'd suggest sending an email to support@makemkv.com if you want to find out sooner.

There is already someone offering a flatpak build, independent of Mike.
MakeMKV Frequently Asked Questions
How to aid in finding the answer to your problem: Activating Debug Logging

lastone
Posts: 1
Joined: Wed Jun 26, 2024 5:14 am

Re: Interest in AppImage Builds?

Post by lastone » Wed Jun 26, 2024 5:38 am

hi mastercactapus,
could you sent me the script via pm.

regards
lastone

flojo
Posts: 67
Joined: Thu Jun 22, 2023 4:27 am
Location: El Paso

Re: Interest in AppImage Builds?

Post by flojo » Thu Jun 27, 2024 6:19 pm

mastercactapus wrote:
Fri Jul 19, 2019 3:19 am
I can share the script/process of building it for anyone interested too.
Post the script here in a code box. If it helps, I was using the below as part of an update script:

Code: Select all

#!/bin/bash
# Download latest makemkv for Linux
MAKEMKV_URL="https://forum.makemkv.com/forum/viewtopic.php?f=3&t=224"

get_makemkv() {
  local _dir="$*"
  [ "" == "$_dir" ] && _dir='.'
  local _PAGE=$(timeout -k 0 30 wget -qO - "$MAKEMKV_URL")
  local _BIN=$(printf "%s" "$_PAGE" | grep -io 'https://www.makemkv.com/download/makemkv-bin-[^"]*' | head -n 1)
  local _OSS=$(printf "%s" "$_PAGE" | grep -io 'https://www.makemkv.com/download/makemkv-oss-[^"]*' | head -n 1)
  if [ "" != "$_BIN" ] && [ "" != "$_OSS" ]; then
    wget -O "$_dir/$(basename "$_BIN")" "$_BIN" || return 1
    wget -O "$_dir/$(basename "$_OSS")" "$_OSS" || return 1
    return 0
  fi
  return 1
}

get_makemkv "$PWD"

Post Reply