blob: 63bf8c03b864eb53ba5f6725bc48b9fc320afa23 (
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-freedom
pkgdesc="This package conflicts with every nonfree package known to date to ensure your system is free."
license=('GPL3')
url="https://git.parabola.nu/blacklist.git"
pkgver=20210421
_gitver=93c93bbcf56ae5cff1387c9a93c40cfa81f636ff
pkgrel=1
arch=('any')
install=${pkgname}.install
makedepends=(librelib)
source=(blacklist-${_gitver}.txt::https://git.parabola.nu/blacklist.git/plain/blacklist.txt?id=${_gitver})
sha512sums=('6b0ceb86e53117a18085981f93ca85b16a8ae8b403404bd90ef7160ef5e4e57ef4c1dd607c0072a7d40bd611c070bd612af1424fc471861f204da7a0d0b99ba4')
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
}
|