Package Details: openutau 0.1.327-1

Git Clone URL: https://aur.archlinux.org/openutau.git (read-only, click to copy)
Package Base: openutau
Description: Open source UTAU successor
Upstream URL: https://github.com/stakira/OpenUtau
Licenses: MIT
Submitter: That1Calculator
Maintainer: Phaotee
Last Packager: Phaotee
Votes: 4
Popularity: 0.46
First Submitted: 2021-11-23 04:14 (UTC)
Last Updated: 2023-12-06 23:10 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

meille commented on 2023-04-07 18:05 (UTC)

This is currently failing the sha256sums validity check

Phaotee commented on 2022-12-06 07:10 (UTC)

@bibliotheca: on it

bibliotheca commented on 2022-11-18 08:27 (UTC) (edited on 2022-11-20 08:17 (UTC) by bibliotheca)

In the desktop entry file, change Exec=/opt/openutau/OpenUtau-prerelease-x86_64.AppImage to Exec=/opt/openutau/OpenUtau so that it can be executed from the application launcher. Also, since the icon is not displayed in the application launcher, you need to install icon and write it in the desktop entry file.

unknowndev commented on 2022-08-06 10:08 (UTC)

The current pkgbuild should be copied to -bin, then the current pkgbuild should be rewritten and we should compile from source

Sorual commented on 2022-07-07 03:48 (UTC)

I could not launch. It is apparently looking for an AppImage in opt/openutau/, but all that's there is the zipped package. Which is peculiar to me since I don't believe OpenUtau uses AppImages natively to begin with.

Phaotee commented on 2022-03-31 08:00 (UTC)

This is what I had to do to install:

diff --git a/PKGBUILD b/PKGBUILD
index 0b1618a..9c6398e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,19 +11,15 @@ arch=('x86_64')
 url="https://github.com/stakira/OpenUtau"
 license=('MIT')
 depends=('fuse2' 'fuse3' 'fuse-common')
-_appimage="OpenUtau-prerelease-x86_64.AppImage"
+_appimage="OpenUtau-linux-x64.tar.gz"
 source_x86_64=("${_appimage}::https://github.com/stakira/OpenUtau/releases/download/OpenUtau-Latest/${_appimage}")
-noextract=("${_appimage}")
-sha256sums_x86_64=('571824f765a566105cebac63de4242633c9041045e2e2943a3a9b49c2af9b0c5')
+sha256sums_x86_64=('9dc35aaa45071bedee9847d7d71aac72dbd68877f0eb823f9242ad3eb874691d')
 options+=('!strip')

-prepare() {
-    chmod +x "${_appimage}"
-}
-
 package() {
     # AppImage
-    install -Dm755 "${srcdir}/${_appimage}" "${pkgdir}/opt/${pkgname}/${_appimage}"
+    mkdir -p "${pkgdir}/opt/"
+    cp -rv "${srcdir}" "${pkgdir}/opt/${pkgname}"
     # Desktop file
     install -Dm644 "${srcdir}/../${_pkgname}.desktop"\
             "${pkgdir}/usr/share/applications/${_pkgname}.desktop"

kleintux commented on 2021-11-24 20:11 (UTC)

you could build with this package the software from source. and create a new one for the bin. thx

That1Calculator commented on 2021-11-24 19:49 (UTC)

@kleintux sorry about that. Should I re-upload it? I don't think there's a way to change the name of an existing package.