* update libraw to 0.21.3-1

This commit is contained in:
Alexander Baldeck 2024-09-25 08:47:40 +02:00
parent e825cb9c65
commit 3b900499bd
3 changed files with 36 additions and 6 deletions

19
libraw/.SRCINFO Normal file
View File

@ -0,0 +1,19 @@
pkgbase = libraw
pkgdesc = A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)
pkgver = 0.21.3
pkgrel = 1
url = https://www.libraw.org/
arch = x86_64
license = CDDL-1.0
license = LGPL-2.1-only
makedepends = git
depends = gcc-libs
depends = glibc
depends = jasper
depends = lcms2
depends = libjpeg-turbo
depends = zlib
source = git+https://github.com/LibRaw/LibRaw#tag=0.21.3
sha256sums = e8f8177726d8444e15fede8e5c25514833ad191401d5396b0b5af64971b9c76f
pkgname = libraw

4
libraw/.nvchecker.toml Normal file
View File

@ -0,0 +1,4 @@
[libraw]
source = 'github'
github = 'LibRaw/LibRaw'
use_max_tag = true

View File

@ -7,28 +7,35 @@
# Contributor: Brad Fanella <bradfanella@archlinux.us>
pkgname=libraw
pkgver=0.21.2
pkgver=0.21.3
pkgrel=1
pkgdesc='A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://www.libraw.org/'
license=(CDDL LGPL)
license=(CDDL-1.0
LGPL-2.1-only)
depends=(gcc-libs
glibc
jasper
lcms2
libjpeg-turbo
zlib)
source=(https://www.libraw.org/data/LibRaw-$pkgver.tar.gz)
sha256sums=('fe7288013206854baf6e4417d0fb63ba4ed7227bf36fff021992671c2dd34b03')
makedepends=(git)
source=(git+https://github.com/LibRaw/LibRaw#tag=$pkgver)
sha256sums=('e8f8177726d8444e15fede8e5c25514833ad191401d5396b0b5af64971b9c76f')
prepare() {
cd LibRaw
autoreconf -vi
}
build() {
cd LibRaw-$pkgver
cd LibRaw
./configure --prefix=/usr
make
}
package() {
cd LibRaw-$pkgver
cd LibRaw
make DESTDIR="$pkgdir" install
}