mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: linuxdcpp: Use scons-build-system.
* gnu/packages/direct-connect.scm (linuxdcpp): Switch to scons-build-system.
This commit is contained in:
parent
3d0aa7f70b
commit
2b1a5ed854
1 changed files with 6 additions and 19 deletions
|
@ -17,7 +17,7 @@
|
||||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (gnu packages direct-connect)
|
(define-module (gnu packages direct-connect)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system scons)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -44,23 +44,11 @@ (define-public linuxdcpp
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12i92hirmwryl1qy0n3jfrpziwzb82f61xca9jcjwyilx502f0b6"))))
|
"12i92hirmwryl1qy0n3jfrpziwzb82f61xca9jcjwyilx502f0b6"))))
|
||||||
(build-system python-build-system)
|
(build-system scons-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:python ,python-2
|
`(#:scons ,scons-python2
|
||||||
#:tests? #f ; no tests
|
#:scons-flags (list (string-append "PREFIX=" %output))
|
||||||
#:phases
|
#:tests? #f)) ; no tests
|
||||||
;; TODO: Add scons-build-system and use it here.
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
|
||||||
(replace 'build
|
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
||||||
(let ((out (assoc-ref outputs "out")))
|
|
||||||
(mkdir-p out)
|
|
||||||
(zero? (system* "scons" (string-append "PREFIX=" out)
|
|
||||||
"-j" (number->string (parallel-job-count)))))))
|
|
||||||
(replace 'install
|
|
||||||
(lambda _
|
|
||||||
(zero? (system* "scons" "install")))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("bzip2" ,bzip2)
|
("bzip2" ,bzip2)
|
||||||
|
@ -71,8 +59,7 @@ (define-public linuxdcpp
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("bazaar" ,bazaar)
|
`(("bazaar" ,bazaar)
|
||||||
("gettext-minimal" ,gettext-minimal)
|
("gettext-minimal" ,gettext-minimal)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)))
|
||||||
("scons" ,scons)))
|
|
||||||
(home-page "https://launchpad.net/linuxdcpp/")
|
(home-page "https://launchpad.net/linuxdcpp/")
|
||||||
(synopsis "Direct Connect client")
|
(synopsis "Direct Connect client")
|
||||||
(description "LinuxDC++ is a Direct Connect (DC) client. Direct Connect
|
(description "LinuxDC++ is a Direct Connect (DC) client. Direct Connect
|
||||||
|
|
Loading…
Reference in a new issue