blob: b0549265eed294822e1c234770cb9dde1baceeba (
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
|
# Maintainer: Plague-doctor <plague at privacyrequired dot com >
# Co-maintainer: bacteriostat <dev dot bacteriostat at aleeas dot com>
# Credit for simplifying build goes to Martin Cihlář.
_pkgname=freetube
pkgname=${_pkgname}-bin
pkgver=0.21.3
pkgrel=1
pkgdesc="An open source desktop YouTube player built with privacy in mind."
arch=('x86_64' 'aarch64')
url='https://github.com/FreeTubeApp/FreeTube'
license=('AGPL3')
options=('!strip' 'staticlibs')
depends=('ttf-liberation')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source_x86_64=("${pkgname}-${pkgver}-amd64.deb"::"$url/releases/download/v$pkgver-beta/${_pkgname}_${pkgver}_amd64.deb")
source_aarch64=("${pkgname}-${pkgver}-arm64.deb"::"$url/releases/download/v$pkgver-beta/${_pkgname}_${pkgver}_arm64.deb")
prepare() {
mkdir data
bsdtar -x -f data.tar.xz -C data
}
package() {
install -d "$pkgdir/usr/bin"
cp -a ${srcdir}/data/* ${pkgdir}/
ln -s "/opt/FreeTube/$_pkgname" "$pkgdir/usr/bin/$_pkgname"
}
md5sums_x86_64=('844fec3dd9abf50a24eab6ca16d9a29d')
md5sums_aarch64=('606ee5f53e176acbb922459e9d507f2b')
|