unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41997] [PATCH] gnu: Add photoflare.
@ 2020-06-22  3:19 Vinicius Monego
  2020-06-24 19:05 ` bug#41997: " Marius Bakke
  0 siblings, 1 reply; 2+ messages in thread
From: Vinicius Monego @ 2020-06-22  3:19 UTC (permalink / raw)
  To: 41997; +Cc: Vinicius Monego

* gnu/packages/photo.scm (photoflare): New variable.
---
 gnu/packages/photo.scm | 45 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm
index 4904fa1db1..8f6d05f0f7 100644
--- a/gnu/packages/photo.scm
+++ b/gnu/packages/photo.scm
@@ -30,6 +30,7 @@
   #:use-module (guix build-system perl)
   #:use-module (guix build-system python)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix utils)
@@ -522,6 +523,50 @@ and enhance them.")
     (supported-systems '("i686-linux" "x86_64-linux" "aarch64-linux"))
     (license license:gpl3+)))
 
+(define-public photoflare
+  (package
+    (name "photoflare")
+    (version "1.6.5")
+    (source
+     (origin
+      (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/photoflare/photoflare")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0a394324h7ds567z3i3pw6kkii78n4qwdn129kgkkm996yh03q89"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f
+       #:phases
+       (modify-phases %standard-phases
+        (replace 'configure
+         (lambda* (#:key inputs outputs #:allow-other-keys)
+           (let ((magickpp (assoc-ref inputs "graphicsmagick"))
+                 (out (assoc-ref outputs "out")))
+             (invoke "qmake"
+                     (string-append "INCLUDEPATH += " magickpp
+                                    "/include/GraphicsMagick")
+                     (string-append "PREFIX=" out)
+                     "Photoflare.pro")))))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("qttools" ,qttools)))
+    (inputs
+     `(("graphicsmagick" ,graphicsmagick)
+       ("libomp" ,libomp)
+       ("qtbase" ,qtbase)))
+    (home-page "https://photoflare.io")
+    (synopsis "Quick, simple but powerful image editor")
+    (description "Photoflare is a cross-platform image editor with an aim
+to balance between powerful features and a very friendly graphical user
+interface.  It suits a wide variety of different tasks and users who value a
+more nimble workflow.  Features include basic image editing capabilities,
+paint brushes, image filters, colour adjustments and more advanced features
+such as Batch image processing.")
+    (license license:gpl3+)))
+
 (define-public hugin
   (package
     (name "hugin")
-- 
2.20.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#41997: [PATCH] gnu: Add photoflare.
  2020-06-22  3:19 [bug#41997] [PATCH] gnu: Add photoflare Vinicius Monego
@ 2020-06-24 19:05 ` Marius Bakke
  0 siblings, 0 replies; 2+ messages in thread
From: Marius Bakke @ 2020-06-24 19:05 UTC (permalink / raw)
  To: Vinicius Monego, 41997-done; +Cc: Vinicius Monego

[-- Attachment #1: Type: text/plain, Size: 758 bytes --]

Vinicius Monego <monego@posteo.net> writes:

> * gnu/packages/photo.scm (photoflare): New variable.

[...]
  
> +(define-public photoflare
> +  (package
> +    (name "photoflare")
> +    (version "1.6.5")
> +    (source
> +     (origin
> +      (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/photoflare/photoflare")
> +             (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "0a394324h7ds567z3i3pw6kkii78n4qwdn129kgkkm996yh03q89"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     '(#:tests? #f

I added a "no tests" comment here after having a peek in the upstream
repository.  Applied!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-06-24 19:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-22  3:19 [bug#41997] [PATCH] gnu: Add photoflare Vinicius Monego
2020-06-24 19:05 ` bug#41997: " Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).