mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: oggvorbis: Use #:export clause.
* gnu/packages/oggvorbis.scm: Use #:export clause instead of 'define-public'.
This commit is contained in:
parent
09767fb5d3
commit
cfc8261c72
1 changed files with 15 additions and 8 deletions
|
@ -30,9 +30,16 @@ (define-module (gnu packages oggvorbis)
|
|||
#:renamer (symbol-prefix-proc 'license:))
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix build-system gnu))
|
||||
#:use-module (guix build-system gnu)
|
||||
#:export (libogg
|
||||
libvorbis
|
||||
speex
|
||||
ao
|
||||
flac
|
||||
libkate
|
||||
vorbis-tools))
|
||||
|
||||
(define-public libogg
|
||||
(define libogg
|
||||
(package
|
||||
(name "libogg")
|
||||
(version "1.3.0")
|
||||
|
@ -55,7 +62,7 @@ (define-public libogg
|
|||
"See COPYING in the distribution."))
|
||||
(home-page "http://xiph.org/ogg/")))
|
||||
|
||||
(define-public libvorbis
|
||||
(define libvorbis
|
||||
(package
|
||||
(name "libvorbis")
|
||||
(version "1.3.3")
|
||||
|
@ -80,7 +87,7 @@ (define-public libvorbis
|
|||
"See COPYING in the distribution."))
|
||||
(home-page "http://xiph.org/vorbis/")))
|
||||
|
||||
(define-public speex
|
||||
(define speex
|
||||
(package
|
||||
(name "speex")
|
||||
(version "1.2rc1")
|
||||
|
@ -105,7 +112,7 @@ (define-public speex
|
|||
(license (license:bsd-style "file://COPYING"
|
||||
"See COPYING in the distribution."))))
|
||||
|
||||
(define-public ao
|
||||
(define ao
|
||||
(package
|
||||
(name "ao")
|
||||
(version "1.1.0")
|
||||
|
@ -146,7 +153,7 @@ (define-public ao
|
|||
(license license:gpl2+)
|
||||
(home-page "http://www.xiph.org/ao/")))
|
||||
|
||||
(define-public flac
|
||||
(define flac
|
||||
(package
|
||||
(name "flac")
|
||||
(version "1.2.1")
|
||||
|
@ -174,7 +181,7 @@ (define-public flac
|
|||
"See COPYING in the distribution.")) ; and LGPL and GPL
|
||||
(home-page "http://xiph.org/flac/")))
|
||||
|
||||
(define-public libkate
|
||||
(define libkate
|
||||
(package
|
||||
(name "libkate")
|
||||
(version "0.4.1")
|
||||
|
@ -209,7 +216,7 @@ (define-public libkate
|
|||
(license license:bsd-3)
|
||||
(home-page "http://code.google.com/p/libkate/")))
|
||||
|
||||
(define-public vorbis-tools
|
||||
(define vorbis-tools
|
||||
(package
|
||||
(name "vorbis-tools")
|
||||
(version "1.4.0")
|
||||
|
|
Loading…
Reference in a new issue