Package Details: piskel 0.15.0-5

Git Clone URL: https://aur.archlinux.org/piskel.git (read-only, click to copy)
Package Base: piskel
Description: A free online editor for animated sprites & pixel art.
Upstream URL: https://github.com/piskelapp/piskel
Keywords: animation art editor graphics pixel
Licenses: Apache
Submitter: turtlewit
Maintainer: ongyx
Last Packager: ongyx
Votes: 2
Popularity: 0.000000
First Submitted: 2018-04-06 20:52 (UTC)
Last Updated: 2021-06-13 11:34 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

mensinda commented on 2019-03-17 09:27 (UTC) (edited on 2019-03-17 09:28 (UTC) by mensinda)

The current PKGBUILD fails with some configurations. Please consider using this patch:

diff --git a/PKGBUILD b/PKGBUILD
index e1a363f..7bd90c8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -17,9 +17,11 @@ backup=()
 options=(!strip)
 install=
 changelog=
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/piskelapp/piskel/archive/v0.14.0.tar.gz")
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/piskelapp/piskel/archive/v0.14.0.tar.gz"
+        "Piskel.desktop")
 noextract=()
-md5sums=('18fcdaad58efc6f45e85bb474d17607d')
+md5sums=('18fcdaad58efc6f45e85bb474d17607d'
+         '05e4a9868ef86770de487436a6c42a52')

 build() {
        cd "${pkgname}-${pkgver}"
@@ -35,7 +37,7 @@ package() {
        chmod +x "${pkgdir}/opt/Piskel/piskel"

        install -d "${pkgdir}/usr/share/applications"
-       install "${srcdir}/../Piskel.desktop" "${pkgdir}/usr/share/applications"
+       install "${srcdir}/Piskel.desktop" "${pkgdir}/usr/share/applications"

        install -d "${pkgdir}/usr/bin"
        ln -s "/opt/Piskel/piskel" "${pkgdir}/usr/bin/piskel"

turtlewit commented on 2018-04-12 07:28 (UTC) (edited on 2018-04-12 07:43 (UTC) by turtlewit)

samvdkris - Will do. I'm still new to dependencies, and I thought that bash-completion provided convert. Apparently it doesn't. ImageMagick is probably a better dependency to have anyway. Edit: Should be fixed now.

juliavdkris commented on 2018-04-12 06:04 (UTC)

You should probably add ImageMagick as a dependency. I got confused why my build failed even though Node gave me a "Done, without errors" until I noticed the little "convert: command not found". I guess most people already have ImageMagick installed anyways, but I didn't.