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