initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

21
poppler-data/PKGBUILD Normal file
View File

@@ -0,0 +1,21 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=poppler-data
pkgver=0.4.10
pkgrel=1
pkgdesc="Encoding data for the poppler PDF rendering library"
arch=('any')
license=('Modified-BSD' 'GPL-2')
conflicts=('poppler<0.10.5')
url="https://poppler.freedesktop.org/"
source=(https://poppler.freedesktop.org/${pkgname}-${pkgver}.tar.gz)
sha512sums=('4bebad0791b55b5e2805cf864393d1f777a7996c962398fc178211d2abbf110f75ef2fa6699e275b126aca0540eabb89542a672e0587248db9414e357a32bfd3')
package() {
cd ${pkgname}-${pkgver}
make prefix=/usr DESTDIR="${pkgdir}" install
for i in COPYING COPYING.adobe COPYING.gpl2; do
install -Dm644 ${i} "${pkgdir}/usr/share/licenses/${pkgname}/${i}"
done
}