blob: 59aab9e72db88a5631cdaa5106b2915328b7b525 (
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
52
53
54
|
# Maintainer: Twann <tw4nn at disroot.org>
pkgname=tblock
pkgver=2.7.5
pkgrel=1
provides=("$pkgname")
pkgdesc="An anti-capitalist ad-blocker that uses the hosts file"
url="https://tblock.me"
arch=("any")
license=("GPL3")
install="$pkgname.install"
makedepends=(
"make"
"gzip"
"python>=3"
"python-build"
"python-installer"
"python-setuptools"
"python-wheel"
)
depends=(
"python-urllib3"
"python-requests"
"python-colorama"
)
optdepends=(
"tblock-gui: graphical interface support"
"systemd: automatic updates support for Arch Linux"
"openrc: automatic updates support for OpenRC systems"
"runit: automatic updates support for runit systems"
"dinit: automatic updates support for dinit systems"
)
source=(
"${pkgname}-${pkgver}.tar.gz::https://codeberg.org/tblock/tblock/archive/${pkgver}.tar.gz"
)
sha512sums=(
"924a7d757033a58e88210527fe27525810fdd2010118d457cf185ac58ffeacad0cdd16109ba9db2056ac2989d220d617f53d5f00c8ccb6d9977df1682aa47845"
)
backup=("etc/tblock.conf")
build()
{
cd "$srcdir/$pkgname"
make
}
package()
{
cd "$srcdir/$pkgname"
# Install the package
make install ROOT="$pkgdir"
# Install the configuration file
make install-config ROOT="$pkgdir"
}
|