blob: c689dd3b5e8c89b830087d1078791d00f6bdf10b (
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
|
# Maintainer: Parabola Project <dev@lists.parabola.nu>
pkgname=your-privacy
pkgdesc="This package will remove support for protocols and services known to endanger privacy."
license=('GPL3')
url="https://git.parabola.nu/blacklist.git"
pkgver=20191106
_gitver=c1ac07995595428ceca6e8323cf56c6a96bfc085
pkgrel=2
arch=('any')
groups=('base' 'base-openrc')
install=${pkgname}.install
makedepends=(librelib)
source=(blacklist-${_gitver}.txt::https://git.parabola.nu/blacklist.git/plain/${pkgname}-blacklist.txt?id=${_gitver})
sha512sums=('5c8d631d4bc07c23b62a20eb2bcf2a880a34228e1c85c4d6d284beb7be84577589ec27e1f6359efe5aad840bdbb99d52b08a2e117c8109c419883862141a4696')
package() {
cd "$srcdir"
conflicts=($( \
< blacklist-${_gitver}.txt \
libreblacklist normalize | \
cut -d: -f1,2 | \
sed -n 's/:$//p' | \
sort -u \
))
install -Dm644 blacklist-${_gitver}.txt "$pkgdir"/usr/share/doc/${pkgname}/blacklist.txt
}
|