Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages /
mauikit-imagetools
Commits:
01f1f303 by Antonio Rojas at 2024-09-04T19:22:19+02:00
upgpkg: 4.0.0-2: Fix broken import
- - - - -
3 changed files:
- .SRCINFO
- PKGBUILD
- + fix-path.patch
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = mauikit-imagetools
pkgdesc = MauiKit Image Tools Components
pkgver = 4.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://mauikit.org/
arch = x86_64
license = LGPL-3.0-only
@@ -23,8 +23,10 @@ pkgbase = mauikit-imagetools
depends = tesseract
source =
https://download.kde.org/stable/maui/mauikit-imagetools/4.0.0/mauikit-imagetools-4.0.0.tar.xz
source =
https://download.kde.org/stable/maui/mauikit-imagetools/4.0.0/mauikit-imagetools-4.0.0.tar.xz.sig
+ source = fix-path.patch
validpgpkeys = 023625C8D02C0D8C15C3BABB86C793550794FEB8
sha256sums =
7f1f02924691cc764af5f79c0c227735d75cdc3c68457160bd302ccee1699f02
sha256sums = SKIP
+ sha256sums =
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
pkgname = mauikit-imagetools
=====================================
PKGBUILD
=====================================
@@ -2,7 +2,7 @@
pkgname=mauikit-imagetools
pkgver=4.0.0
-pkgrel=1
+pkgrel=2
pkgdesc='MauiKit Image Tools Components'
url='https://mauikit.org/'
arch=(x86_64)
@@ -23,11 +23,17 @@ depends=(gcc-libs
tesseract)
makedepends=(extra-cmake-modules
opencv)
-source=(https://download.kde.org/stable/maui/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/maui/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+ fix-path.patch)
sha256sums=('7f1f02924691cc764af5f79c0c227735d75cdc3c68457160bd302ccee1699f02'
- 'SKIP')
+ 'SKIP'
+ 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855')
validpgpkeys=(023625C8D02C0D8C15C3BABB86C793550794FEB8) # Camilo Higuita
<[email protected]>
+prepare() {
+ patch -d $pkgname-$pkgver -p1 < fix-path.patch
+}
+
build() {
cmake -B build -S $pkgname-$pkgver
cmake --build build
=====================================
fix-path.patch
=====================================
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/mauikit-imagetools/-/commit/01f1f303f5dc6e780f8ec18f81bf15489a5981ee
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/mauikit-imagetools/-/commit/01f1f303f5dc6e780f8ec18f81bf15489a5981ee
You're receiving this email because of your account on gitlab.archlinux.org.