blob: 1dd314b5c355ef035c2926e1d763fb7c1d2ef708 (
plain)
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
|
# Maintainer: Mahdi Sarikhani <mahdisarikhani@outlook.com>
# Contributor: Mattia Borda <mattiagiovanni.borda@icloud.com>
pkgname=parabolic-qt
_name="${pkgname%-qt}"
pkgver=2025.5.3
pkgrel=2
pkgdesc="Download web video and audio (Qt)"
arch=('x86_64')
url="https://github.com/NickvisionApps/Parabolic"
license=('MIT')
depends=('aria2'
'bash'
'boost-libs'
'curl'
'ffmpeg'
'gcc-libs'
'glib2'
'glibc'
'hicolor-icon-theme'
'libsecret'
'openssl'
'qt6-base'
'qt6-svg'
'yt-dlp')
makedepends=('boost'
'cmake'
'desktop-file-utils'
'libnick'
'qlementine'
'qlementine-icons'
'yelp-tools')
provides=('tube-converter')
conflicts=('tube-converter')
replaces=('tube-converter')
source=("${_name}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('51a4de3cdf191ccfe7a7459ca3f0bc857c83ac00b0f5b3158df26d91cfafd140')
build() {
cmake -B build -S "${_name^}-${pkgver}" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DUI_PLATFORM=qt \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="${pkgdir}" cmake --install build
install -Dm644 "${_name^}-${pkgver}/COPYING" -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|