# Maintainer: jc_gargma # Maintainer (Parabola): Parabola Project # # 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=20190210 pkgrel=1 arch=('any') groups=('base' 'base-openrc') makedepends=(librelib) source=(blacklist.txt) sha512sums=('1884b2e9abf5639738bb5824cf5d8ecfd1b4b7fbb89155089089c5f4d5f2f44cc9588719e6741034324dcaaebca6ead6c5c0a58b6e0c31abea03ea76451885d7') 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 }