[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/14] gnu: Add astyle.
From: |
Eric Bavier |
Subject: |
[PATCH 01/14] gnu: Add astyle. |
Date: |
Sun, 7 Dec 2014 15:51:41 -0600 |
* gnu/packages/pretty-print.scm (astyle): New variable.
---
gnu/packages/pretty-print.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/pretty-print.scm b/gnu/packages/pretty-print.scm
index bd38a4b..1576c3d 100644
--- a/gnu/packages/pretty-print.scm
+++ b/gnu/packages/pretty-print.scm
@@ -196,3 +196,44 @@ output to 8 different formats, including HTML, LaTeX and
ODF. It can also
output to ANSI color escape sequences, so that highlighted source code can be
seen in a terminal.")
(license gpl3+)))
+
+(define-public astyle
+ (package
+ (name "astyle")
+ (version "2.05")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/astyle/astyle/astyle%20"
+ version "/astyle_" version "_linux.tar.gz"))
+ (sha256
+ (base32
+ "0f9sh9kq5ajp1yz133h00fr9235p1m698x7n3h7zbrhjiwgynd6s"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ;no tests
+ #:make-flags (list (string-append "prefix=" %output)
+ "INSTALL=install"
+ "all")
+ #:phases (alist-replace
+ 'configure
+ (lambda _ (chdir "build/gcc"))
+ (alist-cons-after
+ 'install 'install-libs
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Libraries are not installed by default
+ (let* ((output (assoc-ref outputs "out"))
+ (libdir (string-append output "/lib")))
+ (begin
+ (mkdir-p libdir)
+ (for-each (lambda (l)
+ (copy-file
+ l (string-append libdir "/" (basename
l))))
+ (find-files "bin" "lib*")))))
+ %standard-phases))))
+ (home-page "http://astyle.sourceforge.net/")
+ (synopsis "Source code indenter, formatter, and beautifier")
+ (description
+ "Artistic Style is a source code indenter, formatter, and beautifier for
+the C, C++, C++/CLI, Objective‑C, C#, and Java programming languages.")
+ (license lgpl3+)))
--
1.7.9.5
- [PATCH 00/14]: gnu: Add c-reduce., Eric Bavier, 2014/12/07
- [PATCH 01/14] gnu: Add astyle.,
Eric Bavier <=
- [PATCH 02/14] gnu: Add delta., Eric Bavier, 2014/12/07
- [PATCH 03/14] gnu: Add perl-benchmark-timer., Eric Bavier, 2014/12/07
- [PATCH 04/14] gnu: Add perl-exporter-lite., Eric Bavier, 2014/12/07
- [PATCH 05/14] gnu: Add perl-probe-perl., Eric Bavier, 2014/12/07
- [PATCH 06/14] gnu: Add perl-ipc-run3., Eric Bavier, 2014/12/07