gnu: mediastreamer2: Use G-expression.
* gnu/packages/linphone.scm (mediastreamer2)[arguments]: Rewrite with G-expression.master
parent
291b787461
commit
9ff2f971cc
|
@ -591,19 +591,20 @@ API. It also comprises a simple HTTP/HTTPS client implementation.")
|
||||||
(outputs '("out" "doc" "tester"))
|
(outputs '("out" "doc" "tester"))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "-DENABLE_STATIC=NO"
|
(list
|
||||||
|
#:configure-flags '(list "-DENABLE_STATIC=NO"
|
||||||
"-DENABLE_PCAP=YES"
|
"-DENABLE_PCAP=YES"
|
||||||
;; Do not fail on compile warnings.
|
;; Do not fail on compile warnings.
|
||||||
"-DENABLE_STRICT=NO"
|
"-DENABLE_STRICT=NO"
|
||||||
"-DENABLE_PORTAUDIO=YES"
|
"-DENABLE_PORTAUDIO=YES"
|
||||||
"-DENABLE_G729B_CNG=YES")
|
"-DENABLE_G729B_CNG=YES")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-version
|
(add-after 'unpack 'fix-version
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "CMakeLists.txt"
|
(substitute* "CMakeLists.txt"
|
||||||
(("VERSION [0-9]+\\.[0-9]+\\.[0-9]+")
|
(("VERSION [0-9]+\\.[0-9]+\\.[0-9]+")
|
||||||
(string-append "VERSION " ,version)))))
|
(string-append "VERSION " #$version)))))
|
||||||
(add-after 'unpack 'patch-source
|
(add-after 'unpack 'patch-source
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "src/otherfilters/mspcapfileplayer.c"
|
(substitute* "src/otherfilters/mspcapfileplayer.c"
|
||||||
|
@ -617,28 +618,25 @@ API. It also comprises a simple HTTP/HTTPS client implementation.")
|
||||||
(setenv "HOME" (getenv "TEMP"))))
|
(setenv "HOME" (getenv "TEMP"))))
|
||||||
(delete 'check) ;move after install
|
(delete 'check) ;move after install
|
||||||
(add-after 'install 'separate-outputs
|
(add-after 'install 'separate-outputs
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let ((tester-name (string-append #$name "_tester"))
|
||||||
(tester (assoc-ref outputs "tester"))
|
(doc-name (string-append #$name "-" #$version)))
|
||||||
(tester-name (string-append ,name "_tester"))
|
|
||||||
(doc (assoc-ref outputs "doc"))
|
|
||||||
(doc-name (string-append ,name "-" ,version)))
|
|
||||||
(for-each mkdir-p
|
(for-each mkdir-p
|
||||||
(list (string-append tester "/bin")
|
(list (string-append #$output:tester "/bin")
|
||||||
(string-append tester "/share")
|
(string-append #$output:tester "/share")
|
||||||
(string-append doc "/share/doc")))
|
(string-append #$output:doc "/share/doc")))
|
||||||
;; Move the tester executable.
|
;; Move the tester executable.
|
||||||
(rename-file (string-append out "/bin/" tester-name)
|
(rename-file (string-append #$output "/bin/" tester-name)
|
||||||
(string-append tester "/bin/" tester-name))
|
(string-append #$output:tester "/bin/" tester-name))
|
||||||
;; Move the tester data files.
|
;; Move the tester data files.
|
||||||
(rename-file (string-append out "/share/" tester-name)
|
(rename-file (string-append #$output "/share/" tester-name)
|
||||||
(string-append tester "/share/" tester-name))
|
(string-append #$output:tester "/share/" tester-name))
|
||||||
;; Move the HTML documentation.
|
;; Move the HTML documentation.
|
||||||
(rename-file (string-append out "/share/doc/" doc-name)
|
(rename-file (string-append #$output "/share/doc/" doc-name)
|
||||||
(string-append doc "/share/doc/" doc-name)))))
|
(string-append #$output:doc "/share/doc/" doc-name)))))
|
||||||
(add-after 'separate-outputs 'check
|
(add-after 'separate-outputs 'check
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let ((tester (string-append (assoc-ref outputs "tester")
|
(let ((tester (string-append #$output:tester
|
||||||
"/bin/mediastreamer2_tester")))
|
"/bin/mediastreamer2_tester")))
|
||||||
(for-each (lambda (suite-name)
|
(for-each (lambda (suite-name)
|
||||||
(invoke tester "--suite" suite-name))
|
(invoke tester "--suite" suite-name))
|
||||||
|
|
Reference in New Issue