blob: 4360d253e4f1c44f90a8547fd1459f93a22b3d3e (
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
|
# Maintainer: Parabola Project <dev@lists.parabolagnulinux.org>
pkgname=your-freedom
pkgdesc="This package conflicts with every nonfree package known to date to ensure your system is free."
license=('GPL3')
url="https://projects.parabolagnulinux.org/blacklist.git"
pkgver=20140623.3
_gitver=a9535cf32f27dd22ee6154d3b73fb52c8a7ae513
pkgrel=1
arch=('any')
groups=('base')
install=${pkgname}.install
makedepends=(librelib)
source=(blacklist-${_gitver}.txt::https://projects.parabolagnulinux.org/blacklist.git/plain/blacklist.txt?id=${_gitver})
md5sums=('d28686e73aeb011bf4dc621d9cb02979')
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
}
|