[arch-commits] Commit in subdownloader/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Nov 12 17:07:36 UTC 2020
Date: Thursday, November 12, 2020 @ 17:07:35
Author: felixonmars
Revision: 752263
archrelease: copy trunk to community-staging-any
Added:
subdownloader/repos/community-staging-any/
subdownloader/repos/community-staging-any/PKGBUILD
(from rev 752262, subdownloader/trunk/PKGBUILD)
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: subdownloader/repos/community-staging-any/PKGBUILD (from rev 752262, subdownloader/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-12 17:07:35 UTC (rev 752263)
@@ -0,0 +1,49 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Geoffroy Carrier <geoffroy.carrier at koon.fr>
+# Contributor: Thomas Jost <thomas.jost at gmail.com>
+
+pkgname=subdownloader
+pkgver=2.1.0
+pkgrel=4
+pkgdesc="Automatic download/upload of subtitles using fast hashing"
+arch=('any')
+url="https://github.com/subdownloader/subdownloader"
+license=('GPL3')
+depends=('desktop-file-utils' 'python-argcomplete' 'python-argparse'
+'python-commonmark' 'python-langdetect' 'python-progressbar' 'python-pyqt5'
+'python-pymediainfo' 'python-setuptools' 'python-sip')
+makedepends=('python-sphinx' 'python-sphinx-argparse')
+checkdepends=('python-pytest')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz")
+sha512sums=('c61e5eb5c9f1cb452b42a2643e67d9c82550af3dd36940e2d7f4afb8229f8d394a0eafca662f5446c13230b6541dec25e6d33c486a3324d4a5e3c2d7b3a1faa8')
+
+build(){
+ cd "${pkgname}-${pkgver}"
+ python setup.py build
+ python setup.py build_sphinx
+}
+
+check() {
+ cd "${pkgname}-${pkgver}"
+ py.test
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py install --skip-build \
+ --optimize=1 \
+ --root="${pkgdir}"
+ # man page
+ install -vDm 644 "build/sphinx/man/${pkgname}.1" \
+ "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+ # freedesktop.org
+ install -vDm 644 "${pkgname}.desktop" \
+ "${pkgdir}/usr/share/applications/${pkgname}.desktop"
+ install -vDm 644 "scripts/gui/rc/images/${pkgname}.png" \
+ "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
+ # docs
+ install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+ -vDm 644 {ChangeLog,README.md}
+}
More information about the arch-commits
mailing list