makedeb


ueberzugpp 2.9.6-0


Command line util which allows to display images in combination with X11 written in C++

Click here to go back to the commit logs for ueberzugpp.

Commit:


Hash: 76930c8f84f70c30da9c30af010232f3843a853d

Message: upgpkg: ueberzugpp 1.9.1-1 upstream release

Diff


diff --git a/.SRCINFO b/.SRCINFO
index d3328e1..a062e76 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
 pkgbase = ueberzugpp
 	pkgdesc = Command line util which allows to display images in combination with X11 written in C++
-	pkgver = 1.8.0
+	pkgver = 1.9.1
 	pkgrel = 1
 	url = https://github.com/jstkdng/ueberzugpp
 	arch = x86_64
@@ -14,7 +14,7 @@ pkgbase = ueberzugpp
 	depends = libsixel
 	provides = ueberzug
 	conflicts = ueberzug
-	source = https://github.com/jstkdng/ueberzugpp/archive/v1.8.0.tar.gz
-	sha256sums = eb3ac54003e6316f2e3ac1c6a36b7cdf20dd1fd831e9d3b13f6b40eef03b341b
+	source = https://github.com/jstkdng/ueberzugpp/archive/v1.9.1.tar.gz
+	sha256sums = 9d5d59844a29b0acba665fe81d7ff882578c9c2e3e863bf825e58605bd6f7dbb
 
 pkgname = ueberzugpp
diff --git a/PKGBUILD b/PKGBUILD
index c9c478b..ea9ea40 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,5 @@
 pkgname=ueberzugpp
-pkgver=1.8.0
+pkgver=1.9.1
 pkgrel=1
 pkgdesc="Command line util which allows to display images in combination with X11 written in C++"
 arch=("x86_64")
@@ -8,19 +8,20 @@ license=("GPL3")
 makedepends=("cmake" "cli11")
 depends=("opencv" "libvips" "xcb-util-image" "nlohmann-json" "libsixel")
 source=("https://github.com/jstkdng/${pkgname}/archive/v${pkgver}.tar.gz")
-sha256sums=('eb3ac54003e6316f2e3ac1c6a36b7cdf20dd1fd831e9d3b13f6b40eef03b341b')
+sha256sums=('9d5d59844a29b0acba665fe81d7ff882578c9c2e3e863bf825e58605bd6f7dbb')
 provides=("ueberzug")
 conflicts=("ueberzug")
 
 build() {
-  cmake -DCMAKE_BUILD_TYPE=Release \
-        -DCMAKE_INSTALL_PREFIX=/usr \
-        -B build -S "${pkgname}-${pkgver}"
+  cmake -B build -S "$pkgname-$pkgver" \
+        -DCMAKE_BUILD_TYPE='None' \
+        -DCMAKE_INSTALL_PREFIX='/usr' \
+        -Wno-dev
   cmake --build build
 }
 
 package() {
-  DESTDIR="$pkgdir" cmake --install build --config Release
+  DESTDIR="$pkgdir" cmake --install build
 }
 
 # vim:set ts=2 sw=2 et: