unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 971acfb9674b302f091219ae0e31046789914674 7772 bytes (raw)
name: gnu/packages/kodi.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
 
(define-module (gnu packages kodi)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix utils)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages algebra)
  #:use-module (gnu packages audio)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages avahi)
  #:use-module (gnu packages base)
  #:use-module (gnu packages boost)
  #:use-module (gnu packages cdrom)
  #:use-module (gnu packages cmake)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages curl)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages doxygen)
  #:use-module (gnu packages fontutils)
  #:use-module (gnu packages fribidi)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages ghostscript)
  #:use-module (gnu packages gawk)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gperf)
  #:use-module (gnu packages gnunet)
  #:use-module (gnu packages gnupg)
  #:use-module (gnu packages image)
  #:use-module (gnu packages java)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages mp3)
  #:use-module (gnu packages pcre)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages pulseaudio)
  #:use-module (gnu packages python)
  #:use-module (gnu packages samba)
  #:use-module (gnu packages sdl)
  #:use-module (gnu packages ssh)
  #:use-module (gnu packages swig)
  #:use-module (gnu packages textutils)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages video)
  #:use-module (gnu packages web)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages xiph)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages yasm)
  #:use-module (gnu packages zip))

(define-public kodi
  (package
    (name "kodi")
    (version "15.2")
    (source (origin
              (method url-fetch)
              (uri (string-append "http://mirrors.kodi.tv/releases/source/"
                                  version "-Isengard.tar.gz"))
              (file-name (string-append name "-" version ".tar.gz"))
              (sha256
               (base32
                "043i0f1crx9glwxil4xm45z5kxpkrx316gi4ir4d3rbd5safp2nx"))))
    (build-system gnu-build-system)
    (arguments
     '(#:configure-flags '("--with-ffmpeg=shared") ; don't use bundled ffmpeg
       #:phases
       (modify-phases %standard-phases
         ;; JsonSchemaBuilder is a small tool needed by the build system that
         ;; comes bundled with the source.  The build system tries to build it
         ;; during the bootstrapping phase, which causes serious issues
         ;; because there's no time for shebangs to be patched.  So, we
         ;; bootstrap it on our own instead.
         (add-after 'unpack 'bootstrap-jsonschemabuilder
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((cwd (getcwd)))
               (dynamic-wind
                 (const #t)
                 (lambda ()
                   (chdir "tools/depends/native/JsonSchemaBuilder/src")
                   (zero? (system* "sh" "autogen.sh")))
                 (lambda ()
                   (chdir cwd))))))
         ;; Now we can do the regular bootstrapping process, but only after
         ;; the first round of shebang patching.  We must repeat the patching
         ;; after bootstrapping so that all of the files generated by the
         ;; Autotools et al. are patched appropriately.
         (add-after 'patch-source-shebangs 'bootstrap
           (lambda* (#:key inputs #:allow-other-keys)
             ;; We bootstrapped JsonSchemaBuilder in the previous phase, so we
             ;; need to make sure it isn't done a second time.  Otherwise, it
             ;; would undo the shebang patching that we worked so hard for.
             (substitute* '("tools/depends/native/JsonSchemaBuilder/Makefile")
               (("\\./autogen\\.sh") ""))
             ;; This essentially does what their 'bootstrap' script does, but
             ;; additionally passes the correct CONFIG_SHELL.
             (let ((bash (string-append (assoc-ref inputs "bash") "/bin/sh")))
               (define (run-make makefile)
                 (zero? (system* "make" "-f" makefile
                                 "BOOTSTRAP_STANDALONE=1"
                                 (string-append "CONFIG_SHELL=" bash))))
               (and (run-make "bootstrap.mk")
                    (run-make "codegenerator.mk")))))
         (add-after 'bootstrap 'patch-source-shebangs-again
           (assoc-ref %standard-phases 'patch-source-shebangs))
         ;; 3 tests fail that appear harmless, so we disable them.
         (add-before 'check 'disable-some-tests
           (lambda _
             (substitute* '("xbmc/utils/test/TestSystemInfo.cpp")
               (("TEST_F\\(TestSystemInfo, GetOsPrettyNameWithVersion\\)")
                "TEST_F(TestSystemInfo, DISABLED_GetOsPrettyNameWithVersion)")
               (("TEST_F\\(TestSystemInfo, GetOsName\\)")
                "TEST_F(TestSystemInfo, DISABLED_GetOsName)")
               (("TEST_F\\(TestSystemInfo, GetOsVersion\\)")
                "TEST_F(TestSystemInfo, DISABLED_GetOsVersion)")))))))
    ;; TODO: Add dependencies for:
    ;; - vdpau
    ;; - nfs
    ;;
    ;; FIXME: libusb detection fails.
    ;;
    ;; FIXME: As you can see, we use a lot of external libraries, but it seems
    ;; that a few bundled ones are still being used.
    (native-inputs
     `(("autoconf" ,autoconf)
       ("automake" ,automake)
       ("cmake" ,cmake)
       ("doxygen" ,doxygen)
       ("gawk" ,gawk)
       ("gettext" ,gnu-gettext)
       ("icedtea7" ,icedtea7)
       ("libtool" ,libtool)
       ("pkg-config" ,pkg-config)
       ("swig" ,swig)
       ("which" ,which)
       ("yasm" ,yasm)))
    (inputs
     `(("alsa-lib" ,alsa-lib)
       ("avahi" ,avahi)
       ("bluez" ,bluez)
       ("boost" ,boost)
       ("bzip2" ,bzip2)
       ("curl" ,curl)
       ("dbus" ,dbus)
       ("enca" ,enca)
       ("eudev" ,eudev)
       ("ffmpeg" ,ffmpeg)
       ("flac" ,flac)
       ("fontconfig" ,fontconfig)
       ("freetype" ,freetype)
       ("fribidi" ,fribidi)
       ("glew" ,glew)
       ("gnutls" ,gnutls)
       ("gperf" ,gperf)
       ("jasper" ,jasper)
       ("lame" ,lame)
       ("libass" ,libass)
       ("libbluray" ,libbluray)
       ("libcap" ,libcap)
       ("libcdio" ,libcdio)
       ("libgcrypt" ,libgcrypt)
       ("libjpeg" ,libjpeg)
       ("libltdl" ,libltdl)
       ("libmad" ,libmad)
       ("libmicrohttpd" ,libmicrohttpd)
       ("libmodplug" ,libmodplug)
       ("libmpeg2" ,libmpeg2)
       ("libogg" ,libogg)
       ("libpng" ,libpng)
       ("libsamplerate" ,libsamplerate)
       ("libssh" ,libssh)
       ("libtiff" ,libtiff)
       ("libva" ,libva)
       ("libvorbis" ,libvorbis)
       ("libxml2" ,libxml2)
       ("libxmu" ,libxmu)
       ("libxrandr" ,libxrandr)
       ("libxrender" ,libxrender)
       ("libxslt" ,libxslt)
       ("libxt" ,libxt)
       ("libyajl" ,libyajl)
       ("lzo" ,lzo)
       ("mesa-utils" ,mesa-utils)
       ("mysql" ,mysql)
       ("openssl" ,openssl)
       ("pcre" ,pcre)
       ("pulseaudio" ,pulseaudio)
       ("python" ,python-2)
       ("samba" ,samba)
       ("sdl2" ,sdl2)
       ("sqlite" ,sqlite)
       ("taglib" ,taglib)
       ("tinyxml" ,tinyxml)
       ("unzip" ,unzip)
       ("zip" ,zip)
       ("zlib" ,zlib)))
    (synopsis "Media center for home theater computers")
    (description "Kodi is a media center application for playing videos,
music, games, etc.  Kodi is highly customizable and features a theme and
plug-in system.")
    (home-page "http://kodi.tv")
    (license license:gpl2+)))

debug log:

solving 971acfb ...
found 971acfb in https://yhetil.org/guix-devel/878u5m531a.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me/

applying [1/1] https://yhetil.org/guix-devel/878u5m531a.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me/
diff --git a/gnu/packages/kodi.scm b/gnu/packages/kodi.scm
new file mode 100644
index 0000000..971acfb

Checking patch gnu/packages/kodi.scm...
Applied patch gnu/packages/kodi.scm cleanly.

index at:
100644 971acfb9674b302f091219ae0e31046789914674	gnu/packages/kodi.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).