blob: cd3bf6bd1ccbb71c88f803e180bb960aab1f487c (
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: Camelia Lavender <cam at camelia dot dev>
pkgname=tblock-gui
pkgver=1.3.6
pkgrel=1
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=(
"76aa12b64f3c65aade3248e02ca447a181ec7b87eb9c580b223b479c12b20827cb128b5851c8223d2291e1a89240e7c607cbea80e1b02bd7e3b90c3f45a15748"
)
build()
{
cd "$srcdir/$pkgname"
make
}
package()
{
cd "$srcdir/$pkgname"
# Install the package
make install ROOT="$pkgdir"
}
|