* update libcupsfilters to 2.1.0-1

This commit is contained in:
Alexander Baldeck 2024-11-17 10:56:35 +01:00
parent a9f7df8e40
commit b6b5137c50
3 changed files with 19 additions and 10 deletions

View File

@ -1,14 +1,14 @@
pkgbase = libcupsfilters
pkgdesc = OpenPrinting CUPS Filters - contains all the code of the filters of the former cups-filters package as library functions
pkgver = 2.0.0
pkgrel = 2.1
pkgver = 2.1.0
pkgrel = 1
url = https://github.com/OpenPrinting/libcupsfilters
arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
license = Apache
license = Apache-2.0 WITH LLVM-exception
checkdepends = ttf-dejavu
makedepends = ghostscript
depends = libcups
@ -23,7 +23,7 @@ pkgbase = libcupsfilters
depends = glibc
depends = gcc-libs
depends = dbus
source = https://github.com/OpenPrinting/libcupsfilters/releases/download/2.0.0/libcupsfilters-2.0.0.tar.xz
sha256sums = 542f2bfbc58136a4743c11dc8c86cee03c9aca705612654e36ac34aa0d9aa601
source = https://github.com/OpenPrinting/libcupsfilters/releases/download/2.1.0/libcupsfilters-2.1.0.tar.xz
sha256sums = cbe900c7783e4aab0b1681629fad7322d82d082a51e8bae7e1c741d26bdcd294
pkgname = libcupsfilters

View File

@ -0,0 +1,5 @@
[libcupsfilters]
source = "github"
github = "OpenPrinting/libcupsfilters"
use_max_tag = true
prefix = "v"

View File

@ -2,21 +2,22 @@
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=libcupsfilters
pkgver=2.0.0
pkgrel=2.1
pkgver=2.1.0
pkgrel=1
pkgdesc="OpenPrinting CUPS Filters - contains all the code of the filters of the former cups-filters package as library functions"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://github.com/OpenPrinting/libcupsfilters"
license=('Apache')
license=('Apache-2.0 WITH LLVM-exception')
depends=('libcups' 'libexif' 'qpdf' 'poppler'
'libjpeg-turbo' 'libpng' 'libtiff' 'lcms2' 'fontconfig' 'glibc' 'gcc-libs' 'dbus')
'libjpeg-turbo' 'libpng' 'libtiff' 'lcms2'
'fontconfig' 'glibc' 'gcc-libs' 'dbus')
makedepends=(
'ghostscript'
# 'mupdf-tools' ???
)
checkdepends=('ttf-dejavu') # ttf-dejavu for make check
source=("https://github.com/OpenPrinting/libcupsfilters/releases/download/$pkgver/$pkgname-$pkgver.tar.xz")
sha256sums=('542f2bfbc58136a4743c11dc8c86cee03c9aca705612654e36ac34aa0d9aa601')
sha256sums=('cbe900c7783e4aab0b1681629fad7322d82d082a51e8bae7e1c741d26bdcd294')
build() {
cd "$pkgname"-$pkgver
@ -37,4 +38,7 @@ check() {
package() {
cd "$pkgname"-$pkgver
make DESTDIR="$pkgdir/" install
# license
mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
install -m644 "${srcdir}"/${pkgname}-${pkgver}/{COPYING,NOTICE} "${pkgdir}"/usr/share/licenses/${pkgname}/
}