unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 52b730fa56dda18f4ab8b54f6dc8f79fe7847258 10812 bytes (raw)
name: gnu/packages/arcan.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
 
(define-module (gnu packages arcan)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system gnu)
  #:use-module (guix utils)

  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages pcre)
  #:use-module (gnu packages lua)
  #:use-module (gnu packages sdl)
  #:use-module (gnu packages audio)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages apr)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages fontutils)
  #:use-module (gnu packages video)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages ocr)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages freedesktop)
  #:use-module (srfi srfi-1))


(define-public arcan-sdl
  (package
   (name "arcan-sdl")
   (version "0.5.5")
   (source (origin
            (method git-fetch)
            (uri (git-reference
                  (url "https://github.com/letoram/arcan.git")
                  (commit "67231da5e736a045cfc0b8db4104351b6bea9774")))
            (sha256
             (base32
              "1ws9fpy6bg0xyblfjca0vyyz1hxm65l99xdfszx3xwa495mss9ix"))))
   (build-system cmake-build-system)
   (arguments
    `(#:configure-flags '("-DVIDEO_PLATFORM=sdl" "-DBUILTIN_LUA=off"
                          "-DDISABLE_JIT=on" "-DENABLE_LWA=off"
                          "-DSTATIC_SQLITE3=off" "-DSTATIC_FREETYPE=off"
                          "-DSHMIF_TUI_ACCEL=on")
      #:phases
      (modify-phases %standard-phases
        (add-before 'configure 'chdir
          (lambda _
            (chdir "src")
            #t))
        (add-after 'install 'wrap-program
          (lambda* (#:key outputs #:allow-other-keys)
            (let ((out (assoc-ref outputs "out")))
              (wrap-program (string-append out "/bin/arcan")
                `("ARCAN_RESOURCEPATH" ":" prefix
                  (,(string-append out "/share/arcan/resources")))
                `("ARCAN_BINPATH" ":" prefix
                  (,(string-append out "/bin")))
                `("ARCAN_SCRIPTPATH" ":" prefix
                  (,(string-append out "/share/arcan/scripts")))
                `("ARCAN_APPLBASEPATH" ":" prefix
                  (,(string-append out "/share/arcan/appl"))))))))
      #:tests? #f))
   ;; (native-search-paths
   ;; '((search-path-specification
   ;; (variable "ARCAN_RESOURCEPATH")
   ;; (files '("share/arcan/resources")))
   ;; (search-path-specification
   ;; (variable "ARCAN_BINPATH")
   ;; (files '("bin")))
   ;; (search-path-specification
   ;; (variable "ARCANSCRIPTPATH")
   ;; (files '("share/arcan/scripts")))
   ;; (search-path-specification
   ;; (variable "ARCAN_APPLBASEPATH")
   ;; (files '("share/arcan/appl")))))
   (inputs
    `(("pcre" ,pcre)
      ("glib" ,glib)
      ("libusb" ,libusb)
      ("lua" ,lua-5.1)
      ("sdl" ,sdl)
      ("vlc" ,vlc)
      ("openal" ,openal)
      ("sqlite" ,sqlite)
      ("apr" ,apr)
      ("harfbuzz" ,harfbuzz)
      ("freetype" ,freetype)
      ("lzip" ,lzip)
      ("glu" ,glu)
      ("libxkbcommon" ,libxkbcommon)
      ("ffmpeg" ,ffmpeg)
      ("tesseract-ocr" ,tesseract-ocr)))
   (native-inputs
    `(("pkg-config" ,pkg-config)))
   (home-page "https://arcan-fe.com")
   (synopsis "Combined display server, multimedia framework and game engine (sdl)")
   (description "Arcan is a powerful development framework for creating virtually
anything from user interfaces for specialized embedded applications
all the way to full-blown desktop environments")
   (license (list license:gpl2+
                  license:lgpl2.0
                  license:bsd-3))))

(define-public arcan
  (package
    (inherit arcan-sdl)
    (name "arcan")
    (inputs
     `(("libdrm" ,libdrm)
       ,@(fold alist-delete (package-inputs arcan-sdl)
               '("sdl"))))
    (arguments
     `(#:tests? #f
       #:configure-flags '("-DVIDEO_PLATFORM=egl-dri" "-DBUILTIN_LUA=off"
                           "-DDISABLE_JIT=on" "-DENABLE_LWA=off"
                           "-DSTATIC_SQLITE3=off" "-DSTATIC_FREETYPE=off"
                           "-DSHMIF_TUI_ACCEL=on")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'fix-harcoded-cmake-paths
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* "src/platform/cmake/modules/FindGBMKMS.cmake"
               (("/usr/local/include/libdrm")
                (string-append (assoc-ref inputs "libdrm")
                               "/include/libdrm")))
             (substitute* "src/platform/cmake/modules/FindAPR.cmake"
               (("/usr/local/apr/include/apr-1")
                (string-append (assoc-ref inputs "apr")
                               "/include/apr-1")))
             #t))
         (add-before 'configure 'chdir
           (lambda _
             (chdir "src")
             #t))
         (add-after 'install 'wrap-program
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out")))
               (wrap-program (string-append out "/bin/arcan")
                 `("ARCAN_RESOURCEPATH" ":" prefix
                   (,(string-append out "/share/arcan/resources")))
                 `("ARCAN_BINPATH" ":" prefix
                   (,(string-append out "/bin")))
                 `("ARCAN_SCRIPTPATH" ":" prefix
                   (,(string-append out "/share/arcan/scripts")))
                 `("ARCAN_APPLBASEPATH" ":" prefix
                   (,(string-append out "/share/arcan/appl"))))))))))
    (synopsis "Combined display server,
multimedia framework and game engine (egl-dri)")))

(define-public xarcan
  (package
    (name "xarcan")
    (version "0.5.4")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/letoram/xarcan.git")
             (commit "8e6ee029388326cfe5cddeffe482eb3702e9b7f3")))
       (sha256
        (base32 "0zng7cs6733mnf0p6g5wv02981f2sf567n56csax6cmzb8fpamym"))))
    (build-system gnu-build-system)
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("autoconf" ,autoconf)
       ("automake" ,automake)
       ("libtool" ,libtool)
       ("util-macros" ,util-macros)
       ("font-util" ,font-util)
       ("xtrans" ,xtrans)
       ("xkeyboard-config" ,xkeyboard-config)))
    (inputs
     `(("pixman" ,pixman)
       ("libdrm" ,libdrm)
       ("libx11" ,libx11)
       ("mesa" ,mesa)
       ("libressl" ,libressl)
       ("libxfont2" ,libxfont2)
       ("libkbfile" ,libxkbfile)
       ("libepoxy" ,libepoxy)
       ("arcan" ,arcan)
       ("xorgproto" ,xorgproto)))
    (arguments
     `(#:configure-flags
       `("--enable-kdrive" "--enable-xarcan"
         "--disable-xorg" "--disable-xwayland"
         "--disable-xnest" "--disable-xvfb"
         "--enable-glamor" "--enable-glx"
         "--disable-int10-module" "--enable-ipv6"
         "--enable-record" "--without-systemd-daemon"
         "--enable-xcsecurity" "--disable-static"
         ,(string-append "--with-xkb-path="
                         (assoc-ref %build-inputs "xkeyboard-config")
                         "/share/X11/xkb")
         ,(string-append "--with-xkb-output="
                         "/tmp"))   ; FIXME: This is a bit doubtful; where should
                                        ; the compiled keyboard maps go?

       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'noconfigure
          (lambda _
            (setenv "NOCONFIGURE" "true")
            #t)))))
    (home-page "https://arcan-fe.com")
    (synopsis "Patched Xserver that bridges connections to Arcan")
    (description "Patched Xserver that bridges connections to Arcan")
    (license license:expat)))

(define-public arcan-wayland
  (package
    (inherit arcan-sdl)
    (name "arcan-wayland")
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (inputs
     `(("libxkbcommon" ,libxkbcommon)
       ("libseccomp" ,libseccomp)
       ("arcan" ,arcan)
       ("wayland" ,wayland)
       ("wayland-protocols" ,wayland-protocols)
       ("mesa" ,mesa)))
    (arguments
     `(#:tests? #f
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'chdir
           (lambda _
             (chdir "src/tools/waybridge")
             #t))
         (add-after 'unpack 'fix-cmake-find-shmif
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* "src/platform/cmake/modules/Findarcan_shmif.cmake"
               (("/usr/local") (string-append (assoc-ref inputs "arcan") "")))
             #t)))))
    (synopsis "Wayland protocol service for Arcan")
    (description "Wayland protocol service for Arcan")
    (license license:bsd-3)))

(define-public aclip
  (package
    (name "aclip")
    (version (package-version arcan))
    (source (package-source arcan))
    (build-system cmake-build-system)
    (native-inputs
     `(("arcan" ,arcan)))
    (arguments
     `(#:tests? #f
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'chdir
           (lambda _
             (chdir "src/tools/aclip")
             #t))
         (add-after 'unpack 'fix-cmake-find-shmif
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* "src/platform/cmake/modules/Findarcan_shmif.cmake"
               (("/usr/local") (string-append (assoc-ref inputs "arcan") "")))
             #t)))))
    (home-page "https://arcan-fe.com")
    (synopsis "Clipboard manager for Arcan")
    (description "Clipboard manager for Arcan")
    (license license:bsd-3)))

(define-public aloadimage
  (package
    (name "aloadimage")
    (version (package-version arcan))
    (source (package-source arcan))
    (build-system cmake-build-system)
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (inputs
     `(("arcan" ,arcan)
       ("libseccomp" ,libseccomp)))
    (arguments
     `(#:tests? #f
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'chdir
           (lambda _
             (chdir "src/tools/aloadimage")
             #t))
         (add-after 'unpack 'fix-cmake-find-shmif
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* "src/platform/cmake/modules/Findarcan_shmif.cmake"
               (("/usr/local") (string-append (assoc-ref inputs "arcan") "")))
             #t)))))
    (home-page "https://arcan-fe.com")
    (synopsis "Image viewer for Arcan")
    (description "Image viewer for Arcan")
    (license license:bsd-3)))

debug log:

solving 52b730fa5 ...
found 52b730fa5 in https://yhetil.org/guix-devel/cucftvskn2g.fsf@lprndn.info/

applying [1/1] https://yhetil.org/guix-devel/cucftvskn2g.fsf@lprndn.info/
diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm
new file mode 100644
index 000000000..52b730fa5

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

index at:
100644 52b730fa56dda18f4ab8b54f6dc8f79fe7847258	gnu/packages/arcan.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).