Package Details: jubler 7.0.3-2

Git Clone URL: https://aur.archlinux.org/jubler.git (read-only, click to copy)
Package Base: jubler
Description: Subtitle editor running on Java
Upstream URL: http://www.jubler.org
Keywords: subtitles
Licenses: GPL2
Provides: jubler
Submitter: Kisuke-CZE
Maintainer: CodeXYZ
Last Packager: CodeXYZ
Votes: 1
Popularity: 0.000000
First Submitted: 2017-09-16 23:35 (UTC)
Last Updated: 2022-02-22 21:28 (UTC)

Dependencies (3)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2

kaefert commented on 2020-03-05 09:38 (UTC)

AUR package installation doesn't work anymore:

curl: (22) The requested URL returned error: 404 ==> ERROR: Failure while downloading https://astuteinternet.dl.sourceforge.net/project/jubler/Jubler%20Binary%20Releases/6.0.2/Jubler-6.0.2.appimage

Diff for the build file how I managed to get it installed:

diff --git a/PKGBUILD b/PKGBUILD
index b6cf1e0..3b7e46e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@

 pkgname=jubler
 _AppName=Jubler
-pkgver=6.0.2
+pkgver=7.0.0
 pkgrel=2
 pkgdesc='Subtitle editor running on Java'
 arch=('any')
@@ -12,16 +12,16 @@ license=('GPL2')
 provides=('jubler')
 depends=('java-runtime>=8')
 optdepends=('mplayer: live video preview for subtitles')
-source=("https://astuteinternet.dl.sourceforge.net/project/jubler/Jubler%20Binary%20Releases/${pkgver}/${_AppName}-${pkgver}.appimage"
+source=("https://github.com/teras/Jubler/releases/download/v${pkgver}-alpha1/${_AppName}-${pkgver}-alpha1.appimage"
    'jubler.desktop')
-sha256sums=('822dfe7cd171cbee15b88608ee76d6121f1ebe3fc1a9743a3a47eed326e5d45d'
+sha256sums=('ae7cdecdd8c8184cec174e6b9511b3dfe730764c75f840a03e6c83dff456c271'
             '56f6d1af4d5086231c2f3935d46aaa0293dbba11ecfeaa5f95609a58a9e59056')
 noextract=("${_AppName}-${pkgver}.appimage")

 package() {
    cd ${srcdir}
-   chmod +x ${_AppName}-${pkgver}.appimage
-   ./${_AppName}-${pkgver}.appimage --appimage-extract
+   chmod +x ${_AppName}-${pkgver}-alpha1.appimage
+   ./${_AppName}-${pkgver}-alpha1.appimage --appimage-extract
    mkdir -p ${pkgdir}/usr/share/java/${pkgname}
    cp -R ${srcdir}/squashfs-root/lib/* ${pkgdir}/usr/share/java/${pkgname}/
    mv ${pkgdir}/usr/share/java/${pkgname}/AppRun.jar ${pkgdir}/usr/share/java/${pkgname}/${_AppName}.jar

teras commented on 2018-07-13 17:54 (UTC)

Since I'm the author of Jubler, we can sort this out. Maybe contact me directly through Jubler site, instead of communicating publicly here?

Kisuke-CZE commented on 2018-07-13 08:19 (UTC)

teras: Hi, I've already found that. But I also found, that AppImage does not contain icon for associated files (jubler-subtitles icon) for some reason.

On the other side, it is easier to extract things from that AppImage and there are no libicns and p7zip needed to build package.

So I do not know which option is better.

teras commented on 2018-07-13 07:01 (UTC)

To extract the AppImage do something like ./Jubler.appimage --appimage-extract and the contents will be extracted to squashfs-root/ folder.