emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#59801: closed ([PATCH] gnu: Add orf-dl.)


From: GNU bug Tracking System
Subject: bug#59801: closed ([PATCH] gnu: Add orf-dl.)
Date: Thu, 15 Dec 2022 16:00:03 +0000

Your message dated Thu, 15 Dec 2022 16:59:49 +0100
with message-id <f41eddf5b759028c98e956229a0ff2581b1cb4b6.camel@gmail.com>
and subject line Re: [PATCH] gnu: Add orf-dl.
has caused the debbugs.gnu.org bug report #59801,
regarding [PATCH] gnu: Add orf-dl.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
59801: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59801
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add orf-dl. Date: Sat, 3 Dec 2022 11:20:45 +0100
* gnu/packages/video.scm (orf-dl): New variable.
---
 gnu/packages/video.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 6e0a1e313c..7a60a76f92 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -167,6 +167,7 @@ (define-module (gnu packages video)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages perl-check)
   #:use-module (gnu packages perl-web)
+  #:use-module (gnu packages php)
   #:use-module (gnu packages photo)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages popt)
@@ -2444,6 +2445,38 @@ (define-public libvpx-next
                (base32
                 "1x12f2bd4jqd532rnixmwvcx8d29yxiacpcxqqh86qczc49la8gm"))))))
 
+(define-public orf-dl
+  (let ((commit "2dbbe7ef4e0efe0f3c1d59c503108e22d9065999")
+        (revision "1"))
+    (package
+      (name "orf-dl")
+      (version (git-version "0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/tpoechtrager/orf_dl";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1w413miy01cm7rzb5c6wwfdnc2sqv87cvxwikafgrkswpimvdjsk"))))
+      (build-system copy-build-system)
+      (arguments
+       (list #:install-plan #~`(("orf_dl.php" "bin/orf-dl"))
+             #:phases
+             #~(modify-phases %standard-phases
+                 (add-after 'unpack 'patch-source
+                   (lambda* (#:key inputs #:allow-other-keys)
+                     (substitute* "orf_dl.php"
+                       (("ffmpeg")
+                        (search-input-file inputs "bin/ffmpeg"))))))))
+      (inputs (list php ffmpeg))
+      (home-page "https://github.com/tpoechtrager/orf_dl";)
+      (synopsis "Download videos from tvthek.orf.at")
+      (description "This package provides a PHP-based command line application
+to download videos from Austria's national television broadcaster.")
+      (license license:gpl2+))))
+
 (define-public youtube-dl
   (package
     (name "youtube-dl")
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: Add orf-dl. Date: Thu, 15 Dec 2022 16:59:49 +0100 User-agent: Evolution 3.46.0
Am Samstag, dem 03.12.2022 um 11:20 +0100 schrieb Liliana Marie
Prikler:
> * gnu/packages/video.scm (orf-dl): New variable.
Pushed.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]