Date: Friday, April 7, 2023 @ 16:15:14
Author: felixonmars
Revision: 1441332
archrelease: copy trunk to community-staging-any
Added:
torbrowser-launcher/repos/community-staging-any/
torbrowser-launcher/repos/community-staging-any/PKGBUILD
(from rev 1441331, torbrowser-launcher/trunk/PKGBUILD)
----------+
PKGBUILD | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
Copied: torbrowser-launcher/repos/community-staging-any/PKGBUILD (from rev
1441331, torbrowser-launcher/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 16:15:14 UTC (rev 1441332)
@@ -0,0 +1,33 @@
+# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org>
+
+pkgname=torbrowser-launcher
+pkgver=0.3.6
+pkgrel=2
+pkgdesc="Securely and easily download, verify, install, and launch Tor Browser
in Linux"
+url="https://github.com/micahflee/torbrowser-launcher"
+depends=('python' 'python-pyqt5' 'python-requests' 'python-pysocks'
'python-gpgme' 'python-packaging'
+ 'gnupg' 'tor' 'hicolor-icon-theme' 'dbus-glib')
+makedepends=('python-setuptools' 'python-distro')
+optdepends=('apparmor: support for apparmor profiles')
+arch=('any')
+license=('MIT')
+backup=(
+ 'etc/apparmor.d/local/torbrowser.Browser.firefox'
+ 'etc/apparmor.d/local/torbrowser.Tor.tor'
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/micahflee/torbrowser-launcher/archive/v${pkgver}.tar.gz")
+sha512sums=('75afff4e1c0a258abdf72948ab33a8542c4624d66ae5f06f3bbd5505128b32692747c04d57a5aaaf6084ce3950ec931236171c7195a05a1b8867aa22563f35a8')
+b2sums=('32ec935d80f254fa069e57876e84bb108a5ca09d68c7f0e747228157de5166fc5e2106e6a544faf656c202f90fa0d5a051bdeaf4b398c24b7e17fbf5b9ba4543')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py build
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py install -O1 --root="${pkgdir}" --skip-build
+ install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et: