# 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=20190417 pkgrel=1 arch=('any') groups=('base' 'base-openrc') makedepends=(librelib) source=(blacklist.txt) sha512sums=('179fb6e96eb071f8fdd12122ba477fac1062e878e342f1e690be57c66a1b4da894aaa15ae6b014d96d38ca0f4e368892004b03fd188071516bce24569523c358') 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 }