Package Details: launch4j 3.14-1

Git Clone URL: https://aur.archlinux.org/launch4j.git (read-only, click to copy)
Package Base: launch4j
Description: Cross-platform Java executable wrapper
Upstream URL: http://launch4j.sf.net
Keywords: java
Licenses: custom
Submitter: fi-dschi
Maintainer: jsimon0
Last Packager: sflor
Votes: 17
Popularity: 0.000073
First Submitted: 2008-03-15 21:36 (UTC)
Last Updated: 2021-05-10 06:33 (UTC)

Dependencies (2)

Required by (1)

Sources (1)

Latest Comments

1 2 Next › Last »

jsimon0 commented on 2022-10-15 22:45 (UTC)

@kajlao It seems to be working now. Maybe sourceforge had a CDN problem.

kajlao commented on 2022-10-15 19:46 (UTC)

curl: (47) Maximum (50) redirects followed ==> ERROR: Failure while downloading http://downloads.sourceforge.net/launch4j/launch4j-3.14-linux-x64.tgz Aborting... -> error downloading sources: launch4j context: exit status 1

Maybe change the download link to a direct link?

jsimon0 commented on 2021-02-25 16:55 (UTC)

@gbabin I updated the PKGBUILD to match SRCINFO but @sflor has you covered as well.

sflor commented on 2021-02-25 16:28 (UTC)

You can reset pkgrel to 1 with a new version. And run

makepkg --printsrcinfo > .SRCINFO

gbabin commented on 2021-02-25 16:27 (UTC)

PKGBUILD is at version 3.13-3 but .SRCINFO is at version 3.13-4

sflor commented on 2021-02-21 10:13 (UTC)

@jsimon0 added you as co maintainer, feel free to update it.

jsimon0 commented on 2021-02-18 22:59 (UTC)

An update PKGBUILD for 3.13

pkgname="launch4j"
pkgver="3.13"
pkgrel="3"
arch=('x86_64')
license=('custom')
pkgdesc="Cross-platform Java executable wrapper"
url="http://launch4j.sf.net"
depends=('java-runtime' 'glibc')
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}-linux-x64.tgz")
sha256sums=('75426a7fcd20afcb76dcca465dad1c3c405e46ba7bd8eac43455c97083ac1f4d')
options=('!strip' 'staticlibs')

package()
{
  mkdir -p ${pkgdir}/opt
  cp -aR ${srcdir}/launch4j ${pkgdir}/opt/
  chmod -R 755 ${pkgdir}/opt/launch4j
  mkdir -p ${pkgdir}/usr
  mkdir -p ${pkgdir}/usr/bin

  cat > launch4j.desktop << EoF
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Type=Application
Categories=Java;Development;
Name=launch4j
Comment=Cross-platform Java executable wrapper
Path=/opt/launch4j
Exec=/opt/launch4j/launch4j
Icon=/opt/launch4j/src/images/build.png
Terminal=false

EoF

  cat > launch4j.sh << EoF
#!/bin/bash
/opt/launch4j/launch4j

EoF

  install -D -m 644 $srcdir/launch4j.desktop $pkgdir/usr/share/applications/launch4j.desktop
  install -D -m 755 $srcdir/launch4j.sh $pkgdir/usr/bin/launch4j
}

Bleuzen commented on 2018-06-20 09:34 (UTC)

Hi, would it be possible to use the x64 version?

newsboost commented on 2017-10-25 08:33 (UTC)

Thanks a lot sflor, I didn't thought it was a general problem/bug as I have not used it before. Appreciate fast response and until now, I'll just execute it like this (oneliner): PATH=/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH launch4j

sflor commented on 2017-10-24 14:03 (UTC) (edited on 2017-10-24 14:03 (UTC) by sflor)

https://sourceforge.net/p/launch4j/bugs/172/ Doesn't seem to work with Java 9.