mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: libtheora: Use Gexps.
* gnu/packages/xiph.scm (libtheora): Use Gexps. Change-Id: Ie055cd4f6cb9d2a4601b93d1f9db227598349c7c Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
01f685d560
commit
5980c8a6b1
1 changed files with 4 additions and 2 deletions
|
@ -13,6 +13,7 @@
|
|||
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
|
||||
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
|
||||
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -47,7 +48,8 @@ (define-module (gnu packages xiph)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system gnu))
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix gexp))
|
||||
|
||||
(define-public libogg
|
||||
(package
|
||||
|
@ -115,7 +117,7 @@ (define-public libtheora
|
|||
(patches (search-patches "libtheora-config-guess.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags '("--disable-static")))
|
||||
(list #:configure-flags #~'("--disable-static")))
|
||||
(inputs (list libvorbis))
|
||||
;; The .pc files refer to libogg.
|
||||
(propagated-inputs (list libogg))
|
||||
|
|
Loading…
Reference in a new issue