This would be my suggestion for the .deb
package (updated to 2.8.0
):
PKGBUILD
:
# Maintainer: Ivan Gabaldon <aur[at]inetol.net>
# Contributor: sukanka <su975853527 at gmail.com>
pkgname=tradingview
pkgver=2.8.0
pkgrel=1
pkgdesc='A charting platform for traders and investors'
arch=('x86_64')
url='https://www.tradingview.com/desktop/'
license=('LicenseRef-TradingView')
makedepends=('links')
source=("$pkgname-$pkgver.deb::https://tvd-packages.tradingview.com/ubuntu/stable/latest/jammy/tradingview_amd64.deb")
b2sums=('f967621b5dcb596909e9b298a1748d0a71a9e054d697bfe8cbb2760c748614b3a125d281e4d35f2f5df1dd52e6acfb91e32a67e2e58a8b7b13d9f9779ce52df2')
prepare() {
bsdtar -xf "$srcdir/data.tar.xz" -C "$srcdir"
# License
links -width 80 -dump 'https://www.tradingview.com/policies/' | sed -n '/Terms of Use/,/TradingView may update these Rules at any time/p' > "LICENSE.txt"
sed -i \
-e "s|Exec=.*|Exec=/usr/bin/$pkgname %U|" \
-e "s|Icon=.*|Icon=$pkgname|" \
"$srcdir/usr/share/applications/$pkgname.desktop"
}
package() {
depends=('alsa-lib'
'at-spi2-core'
'cairo'
'dbus'
'expat'
'gcc-libs'
'glib2'
'glibc'
'gtk3'
'hicolor-icon-theme'
'libcups'
'libdrm'
'libsecret'
'libx11'
'libxcb'
'libxcomposite'
'libxdamage'
'libxext'
'libxfixes'
'libxkbcommon'
'libxrandr'
'mesa'
'nspr'
'nss'
'pango')
# Install application directory
install -d "$pkgdir/opt"
mv "$srcdir/opt/TradingView" "$pkgdir/opt/$pkgname"
# Create symlink
install -d "$pkgdir/usr/bin/"
ln -s "/opt/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
# Install desktop entry
install -Dm 644 -t "$pkgdir/usr/share/applications" \
"$srcdir/usr/share/applications/$pkgname.desktop"
# Install icon
install -Dm 644 -t "$pkgdir/usr/share/icons/hicolor/512x512/apps" \
"$srcdir/usr/share/icons/hicolor/512x512/apps/$pkgname.png"
# Install license
install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname" "LICENSE.txt"
}
.SRCINFO
:
pkgbase = tradingview
pkgdesc = A charting platform for traders and investors
pkgver = 2.8.0
pkgrel = 1
url = https://www.tradingview.com/desktop/
arch = x86_64
license = LicenseRef-TradingView
makedepends = links
source = tradingview-2.8.0.deb::https://tvd-packages.tradingview.com/ubuntu/stable/latest/jammy/tradingview_amd64.deb
b2sums = f967621b5dcb596909e9b298a1748d0a71a9e054d697bfe8cbb2760c748614b3a125d281e4d35f2f5df1dd52e6acfb91e32a67e2e58a8b7b13d9f9779ce52df2
pkgname = tradingview
depends = alsa-lib
depends = at-spi2-core
depends = cairo
depends = dbus
depends = expat
depends = gcc-libs
depends = glib2
depends = glibc
depends = gtk3
depends = hicolor-icon-theme
depends = libcups
depends = libdrm
depends = libsecret
depends = libx11
depends = libxcb
depends = libxcomposite
depends = libxdamage
depends = libxext
depends = libxfixes
depends = libxkbcommon
depends = libxrandr
depends = mesa
depends = nspr
depends = nss
depends = pango
Pinned Comments
inetol commented on 2024-12-31 14:08 (UTC) (edited on 2024-12-31 14:12 (UTC) by inetol)
@lpc123 I have no relationship with TradingView and I don't maintain the official packages either from Snap or Debian, so any issues in the official packages should be reported to TradingView itself and not on the AUR. Likewise, issues related to this same package that I maintain unofficially can be discussed here.