[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60201] [PATCH v2] gnu: libswell: align properly
From: |
Sughosha |
Subject: |
[bug#60201] [PATCH v2] gnu: libswell: align properly |
Date: |
Mon, 19 Dec 2022 14:04:35 +0000 |
* gnu/packages/wdl.scm (libswell): Align properly.
---
gnu/packages/wdl.scm | 52 ++++++++++++++++++++++----------------------
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/wdl.scm b/gnu/packages/wdl.scm
index e0a7ea8fac..8cdea46103 100644
--- a/gnu/packages/wdl.scm
+++ b/gnu/packages/wdl.scm
@@ -45,31 +45,31 @@ (define %wdl-origin
"zlib")))))
(define-public libswell
- (package
- (name "libswell")
- (version (git-version "0" "0" %wdl-commit))
- (source %wdl-origin)
- (build-system gnu-build-system)
- (arguments
- `(#:tests? #f
- #:phases (modify-phases %standard-phases
- (delete 'configure) ;no configure script
- (replace 'build
- (lambda _
- (chdir "WDL")
- (invoke "make" "-Cswell")))
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (install-file "swell/libSwell.so"
- (string-append (assoc-ref outputs
- "out")
- "/lib")))))))
- (native-inputs (list pkg-config))
- (inputs (list gtk+))
- (home-page "http://www.cockos.com/wdl")
- (synopsis "Reasonable subset of the win32 API")
- (description
- "SWELL is Simple Windows Emulation Layer with support for automatic
+ (package
+ (name "libswell")
+ (version (git-version "0" "0" %wdl-commit))
+ (source %wdl-origin)
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (delete 'configure) ;no configure script
+ (replace 'build
+ (lambda _
+ (chdir "WDL")
+ (invoke "make" "-Cswell")))
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (install-file "swell/libSwell.so"
+ (string-append (assoc-ref outputs
+ "out")
+ "/lib")))))))
+ (native-inputs (list pkg-config))
+ (inputs (list gtk+))
+ (home-page "http://www.cockos.com/wdl")
+ (synopsis "Reasonable subset of the win32 API")
+ (description
+ "SWELL is Simple Windows Emulation Layer with support for automatic
(PHP-based) dialog and menu resource conversion and SWELL-specific win32-style
extensions.")
- (license license:zlib)))
+ (license license:zlib)))
--
2.38.1
- [bug#60201] [PATCH] gnu: Add libswell, Sughosha, 2022/12/19
- [bug#60201] [PATCH v2] gnu: libswell: align properly,
Sughosha <=
- [bug#60201] [PATCH v3] gnu/packages/wdl.scm: Remove unused module, Sughosha, 2022/12/19
- [bug#60201] [PATCH v4] gnu: libswell: Modify inputs, Sughosha, 2022/12/22
- [bug#60201] [PATCH v5] gnu: libswell: Lint and fix mistakes., Sughosha, 2022/12/22
- [bug#60201] [PATCH v6] gnu/local.mk: Register wdl.scm., Sughosha, 2022/12/30
- [bug#60201] [PATCH v7] gnu: Add libswell., Sughosha, 2022/12/30