summaryrefslogtreecommitdiff
path: root/PKGBUILD
blob: fec162ff66b48d54a729f60e03b15b5018741d60 (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: jc_gargma <jc_gargma@iserlohn-fortress.net>
# Maintainer (Parabola): Parabola Project <dev@lists.parabola.nu>

# # I maintain this because:
# Parabola has some dubious blacklisting decisions

pkgname=your-freedom
pkgdesc="This package conflicts with every proven nonfree package to ensure your system is free."
license=('GPL3')
url="https://git.parabola.nu/blacklist.git"
pkgver=20190425
pkgrel=1

arch=('any')
groups=('base' 'base-openrc')

makedepends=(librelib)
source=(blacklist.txt)
sha512sums=('ae2beb0eaf29e5330935f9249abe4886ad09de8e47360f9c72498dc6503fbd0beff62d616261d2ecec8491632c3281dbe0ddf9fa07d650022e124ee6f1815395')

package() {
	cd "$srcdir"

	conflicts=($(
		< blacklist.txt \
		libreblacklist normalize |
		cut -d: -f1,2 |
		sed -n 's/:$//p' |
		sort -u
		))

	install -Dm644 blacklist.txt "$pkgdir"/usr/share/doc/${pkgname}/blacklist.txt
}