makedeb


ueberzugpp-git 2.9.1.r154.638e89d-1


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-git.

Commit:


Hash: 452f4d76257c3c2f4d816e2cd32d21449876e2f0

Message: upgpkg: ueberzugpp 2.7.1-1 upstream release

Diff


diff --git a/.SRCINFO b/.SRCINFO
index e3e7e54..0811786 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 = 2.7.0
+	pkgver = 2.7.1
 	pkgrel = 1
 	url = https://github.com/jstkdng/ueberzugpp
 	arch = x86_64
@@ -18,7 +18,7 @@ pkgbase = ueberzugpp
 	depends = fmt
 	provides = ueberzug
 	conflicts = ueberzug
-	source = https://github.com/jstkdng/ueberzugpp/archive/v2.7.0.tar.gz
-	sha256sums = f63346c7c9cb13f7f17d79ce9dff384bab2ae9d875861f9b02657956af98810c
+	source = https://github.com/jstkdng/ueberzugpp/archive/v2.7.1.tar.gz
+	sha256sums = 796ccbcecb8b777af4d85d95ae15ab36ee2a62c95ab0dc1616b8c9bb8fb2e111
 
 pkgname = ueberzugpp
diff --git a/PKGBUILD b/PKGBUILD
index 5c262be..7858b5e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,5 @@
 pkgname=ueberzugpp
-pkgver=2.7.0
+pkgver=2.7.1
 pkgrel=1
 pkgdesc="Command line util which allows to display images in combination with X11 written in C++"
 arch=("x86_64")
@@ -8,20 +8,21 @@ license=("GPL3")
 makedepends=("cmake" "cli11")
 depends=("opencv" "libvips" "xcb-util-image" "nlohmann-json" "libsixel" "openssl" "spdlog" "zeromq" "fmt")
 source=("https://github.com/jstkdng/${pkgname}/archive/v${pkgver}.tar.gz")
-sha256sums=('f63346c7c9cb13f7f17d79ce9dff384bab2ae9d875861f9b02657956af98810c')
+sha256sums=('796ccbcecb8b777af4d85d95ae15ab36ee2a62c95ab0dc1616b8c9bb8fb2e111')
 provides=("ueberzug")
 conflicts=("ueberzug")
 
 build() {
   cmake -B build -S "$pkgname-$pkgver" \
-        -DCMAKE_BUILD_TYPE='None' \
+        -DCMAKE_BUILD_TYPE='Release' \
         -DCMAKE_INSTALL_PREFIX='/usr' \
         -Wno-dev
   cmake --build build
 }
 
 package() {
-  DESTDIR="$pkgdir" cmake --install build
+  DESTDIR="$pkgdir" cmake --install build --config Release
+  ln -s "/usr/bin/ueberzug" "$pkgdir/usr/bin/ueberzugpp"
 }
 
 # vim:set ts=2 sw=2 et: