[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/08: gnu: mysql: Strip references and GCC and other build-time depende
From: |
Ludovic Courtès |
Subject: |
03/08: gnu: mysql: Strip references and GCC and other build-time dependencies. |
Date: |
Sat, 27 Jun 2015 19:39:15 +0000 |
civodul pushed a commit to branch wip-diet
in repository guix.
commit 83817e443c9fb68e95334932f30a544954afed99
Author: Ludovic Courtès <address@hidden>
Date: Fri Jun 26 23:39:31 2015 +0200
gnu: mysql: Strip references and GCC and other build-time dependencies.
* gnu/packages/databases.scm (mysql)[arguments]: Add
'strip-extra-references'
phase.
---
gnu/packages/databases.scm | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 3ab2fcd..5185e3e 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -133,7 +133,19 @@ SQL, Key/Value, XML/XQuery or Java Object storage for
their data model.")
"-DINSTALL_SHAREDIR=share/mysql"
;; Get rid of test data.
"-DINSTALL_MYSQLTESTDIR="
- "-DINSTALL_SQLBENCHDIR=")))
+ "-DINSTALL_SQLBENCHDIR=")
+ #:phases (modify-phases %standard-phases
+ (add-after
+ 'install 'strip-extra-references
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Strip references to GCC and other build-time
+ ;; dependencies.
+ (let ((out (assoc-ref outputs "out")))
+ (for-each remove-store-references
+ (list (string-append out "/bin/mysqlbug")
+ (string-append
+ out "/share/mysql/docs/INFO_BIN")))
+ #t))))))
(native-inputs
`(("bison" ,bison)
("perl" ,perl)))
- branch wip-diet created (now 887dec8), Ludovic Courtès, 2015/06/27
- 02/08: gnu: mutt: Don't retain reference to GCC., Ludovic Courtès, 2015/06/27
- 01/08: gnu: ghostscript: Add "doc" output., Ludovic Courtès, 2015/06/27
- 05/08: gnu: cups-filter: Install backends and filters under lib/cups., Ludovic Courtès, 2015/06/27
- 06/08: gnu: qt-4: Use 'modify-phases'., Ludovic Courtès, 2015/06/27
- 07/08: gnu: qt-4: Use a more standard directory layout., Ludovic Courtès, 2015/06/27
- 03/08: gnu: mysql: Strip references and GCC and other build-time dependencies.,
Ludovic Courtès <=
- 04/08: gnu: mysql: Remove unnecessary binaries., Ludovic Courtès, 2015/06/27
- 08/08: gnu: qt-4: Remove reference from "out" to "doc"., Ludovic Courtès, 2015/06/27