Package Details: java-service-wrapper 3.5.54-1

Git Clone URL: https://aur.archlinux.org/java-service-wrapper.git (read-only, click to copy)
Package Base: java-service-wrapper
Description: Enables a Java Application to be run as a Windows Service or Unix Daemon
Upstream URL: https://wrapper.tanukisoftware.com/doc/english/introduction.html
Licenses: GPL2, custom:tanuki-community
Submitter: None
Maintainer: erikol
Last Packager: skydrome
Votes: 143
Popularity: 0.000003
First Submitted: 2011-09-28 06:51 (UTC)
Last Updated: 2023-11-08 23:50 (UTC)

Dependencies (2)

Sources (1)

Pinned Comments

skydrome commented on 2020-02-06 04:41 (UTC) (edited on 2020-02-06 04:44 (UTC) by skydrome)

pacman.conf

[home_skydrome_Arch]
Server = https://download.opensuse.org/repositories/home:/skydrome/Arch/x86_64

Add key

wget https://download.opensuse.org/repositories/home:/skydrome/Arch/x86_64/home_skydrome_Arch.key
pacman-key --add home_skydrome_Arch.key
pacman-key --lsign-key 2e4b3a0b799d7113

Latest Comments

« First ‹ Previous 1 .. 7 8 9 10 11 12

skydrome commented on 2013-04-01 05:53 (UTC)

core_sum, ive updated the pkgbuild to source ant's and jdk's ENV variables so you dont have to re-login to get it to work. Can you try again

core_sum commented on 2013-03-31 19:53 (UTC)

Hi, I have issue to build this one, got this output when I try to build it : i686 architecture [exec] In file included from wrapperjni.h:33:0, [exec] from wrapperjni_unix.c:44: org_tanukisoftware_wrapper_WrapperManager.h:2:17: erreur fatale: jni.h : Aucun fichier ou dossier de ce type [exec] compilation terminée. [exec] make: *** [wrapperjni_unix.o] Erreur 1 BUILD FAILED /tmp/yaourt-tmp-******/aur-java-service-wrapper/src/wrapper_3.5.17_src/build.xml:703: exec returned: 2 Have any idea ? thanks

<deleted-account> commented on 2013-03-22 17:21 (UTC)

This package was superseded by source package. Binary version moved to https://aur.archlinux.org/packages/java-service-wrapper-bin/ .

<deleted-account> commented on 2013-03-22 17:19 (UTC)

This package was superseded by source packages. Binary version moved to https://aur.archlinux.org/packages/java-service-wrapper-bin/ .

hackepeter commented on 2012-11-23 16:06 (UTC)

Please consider changing the dependencies to allow building with jre7-openjdk-headless too. Up to now the java-runtime dependency pulls in jre7-openjdk and several X11 libraries, which are not needed on servers.

<deleted-account> commented on 2012-05-28 15:52 (UTC)

Sure, here you go. Thanks for testing.

<deleted-account> commented on 2012-05-28 15:01 (UTC)

Thanks! One last thing: the package builds for me in x64 but not i686. The following fixed it for me: --- PKGBUILD.old 2012-05-28 14:31:25.028495725 +0000 +++ PKGBUILD 2012-05-28 14:21:35.626047434 +0000 @@ -18,8 +18,11 @@ md5sums=('1852456e19cb472160f5c1498f2d0ea3') build() { cd $srcdir/wrapper_${pkgver}_src - [ "$CARCH" = "i686" ] && ./build32.sh - [ "$CARCH" = "x86_64" ] && ./build64.sh + if [ "$CARCH" = "i686" ]; then + ./build32.sh + else + ./build64.sh + fi } package() { install -d $pkgdir/usr/share/doc/java-service-wrapper I suspect it's because "[ "$CARCH" = "x86_64" ] && ./build64.sh" returns nonzero unless you're on an x64 platform (and since that's the last statement in build() the function ultimately returns non-zero).

<deleted-account> commented on 2012-05-28 13:07 (UTC)

Here you go.

<deleted-account> commented on 2012-05-28 13:00 (UTC)

Yeah, it makes sense. I'm going to rename some things here since those "wrapper" filenames are to generic and would collide with something for sure :)

<deleted-account> commented on 2012-05-28 09:19 (UTC)

Perhaps you'd consider making the following changes: http://pastebin.com/8dmFMjZz - It would add the wrapper to the path (/usr/sbin like Debian uses) - wrapper.jar to /usr/share/java - libwrapper.so to /usr/lib - config files and license to /usr/share/doc/java-service-wrapper (I add the config files to the docs directory as 'examples' since they will need customization. Thank you for your attention. :)