blob: cafd30b47529f6adaa04f325f28eb7537bad2523 (
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
|
# Maintainer: Twann <tw4nn at disroot.org>
pkgname=tblock-gui
pkgver=1.3.4
pkgrel=4
provides=("$pkgname")
pkgdesc="Official graphical user interface for the TBlock content blocker"
url="https://tblock.me"
arch=("any")
license=("GPL3")
makedepends=(
"make"
"python>=3"
"python-setuptools"
"git"
"gettext"
)
depends=(
"gtk3"
"glib2"
"python-gobject"
"hicolor-icon-theme"
"coreutils"
"tblock"
"polkit"
)
source=(
"${pkgname}-${pkgver}.tar.gz::https://codeberg.org/tblock/tblock-gui/archive/${pkgver}.tar.gz"
)
sha512sums=(
"f0f6a0d5ea09da188cd3a2dfe432e63f6a614eae94155f0da39c8d0fdd92eff604b100222c369a308eb1d4b923d5214b5026e6ae67518d8697c9c27f3078d528"
)
build()
{
cd "$srcdir/$pkgname"
make
}
package()
{
cd "$srcdir/$pkgname"
# Install the package
make install ROOT="$pkgdir"
}
|