Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages /
libraw
Commits:
e37626e0 by Antonio Rojas at 2024-09-18T20:07:07+02:00
upgpkg: 0.21.3-1: Update to 0.21.3
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,18 +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.2
+ pkgver = 0.21.3
pkgrel = 1
url = https://www.libraw.org/
arch = x86_64
- license = CDDL
- license = LGPL
+ 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 = https://www.libraw.org/data/LibRaw-0.21.2.tar.gz
- sha256sums =
fe7288013206854baf6e4417d0fb63ba4ed7227bf36fff021992671c2dd34b03
+ source = git+https://github.com/LibRaw/LibRaw#tag=0.21.3
+ sha256sums =
e8f8177726d8444e15fede8e5c25514833ad191401d5396b0b5af64971b9c76f
pkgname = libraw
=====================================
PKGBUILD
=====================================
@@ -6,28 +6,35 @@
# Contributor: Brad Fanella <[email protected]>
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)
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
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/libraw/-/commit/e37626e05bfd837efa74ffeb585331d41a6d9ece
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/libraw/-/commit/e37626e05bfd837efa74ffeb585331d41a6d9ece
You're receiving this email because of your account on gitlab.archlinux.org.