guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#35634] [PATCH] gnu: Add wordpress.


From: swedebugia
Subject: [bug#35634] [PATCH] gnu: Add wordpress.
Date: Wed, 8 May 2019 16:24:02 +0200

From af9e41939c2f7354b6c40b4f06ef4595c10b876f Mon Sep 17 00:00:00 2001
From: swedebugia <address@hidden>
Date: Wed, 8 May 2019 16:19:51 +0200
Subject: [PATCH] gnu: Add wordpress.

* gnu/packages/web.scm (wordpress): Add public variable.
---
 gnu/packages/web.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 756b00237e..8f8e669c3d 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -32,6 +32,7 @@
 ;;; Copyright © 2018 Alex Vong <address@hidden>
 ;;; Copyright © 2019 Nicolas Goaziou <address@hidden>
 ;;; Copyright © 2019 Brendan Tildesley <address@hidden>
+;;; Copyright © 2019 swedebugia <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6618,3 +6619,39 @@ Features enabled by modules:
 @item LDAP connectivity
 @end itemize")
     (license license:gpl3+)))
+
+(define-public wordpress
+  (package
+    (name "wordpress")
+    (version "5.2")
+    (source (origin
+              (method url-fetch)
+ (uri (string-append "https://wordpress.org/"; name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1bc6sg269bllq5w6p9dkqlbmqhmijgg61jcnq8vnkri10yj8jc31"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; No configure, build or tests
+         (delete 'configure)
+         (delete 'build)
+         (delete 'check)
+         (replace 'install
+           ;; There's no ‘install’ target.  Install files manually.
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (lib (string-append out "/lib/" ,name)))
+               (copy-recursively "." lib)
+               #t))))))
+    (inputs
+     `(("php" ,php)
+       ("mariadb" ,mariadb)))
+    (home-page "https://wordpress.org/";)
+    (synopsis "Content management system with a web interface")
+    (description "It features include a plugin architecture and a template
+system. It is most associated with blogging but supports other types of web +content including more traditional mailing lists and forums, media galleries,
+and online stores.  Many plugins are available.")
+    (license license:gpl2+)))
--
2.19.2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]