mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: lame: Install pkg-config file.
* gnu/packages/mp3.scm (lame)[arguments]: Add 'install-pkg-config phase.
This commit is contained in:
parent
64af916d6f
commit
fc5f56eaf4
1 changed files with 21 additions and 0 deletions
|
@ -428,6 +428,27 @@ (define-public lame
|
|||
(base32
|
||||
"07nsn5sy3a8xbmw1bidxnsj5fj6kg9ai04icmqw40ybkp353dznx"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-pkg-config
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(pkg-config-dir (string-append out "/lib/pkgconfig")))
|
||||
(mkdir-p pkg-config-dir)
|
||||
(with-output-to-file (string-append pkg-config-dir "/lame.pc")
|
||||
(lambda _
|
||||
(format #t
|
||||
"prefix=~@*~a~@
|
||||
libdir=${prefix}/lib~@
|
||||
includedir=${prefix}/include~@
|
||||
|
||||
Name: lame~@
|
||||
Description:~@
|
||||
Version: ~a~@
|
||||
Libs: -L${libdir} -lmp3lame~@
|
||||
Cflags: -I${includedir}~%"
|
||||
out ,version)))))))))
|
||||
(home-page "http://lame.sourceforge.net/")
|
||||
(synopsis "MPEG Audio Layer III (MP3) encoder")
|
||||
(description "LAME is a high quality MPEG Audio Layer III (MP3) encoder.")
|
||||
|
|
Loading…
Reference in a new issue