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: 26ac4d38f8cb4164d768672cc7715e92526ccd96

Message: 2.8.7

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 54a64fe..39e14df 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -2,8 +2,8 @@ generated-by = makedeb
 pkgname = ueberzugpp
 pkgbase = ueberzugpp
 pkgdesc = Command line util which allows to display images in combination with X11 written in C++
-pkgrel = 1
-pkgver = 2.8.6
+pkgrel = 0
+pkgver = 2.8.7
 url = https://github.com/jstkdng/ueberzugpp
 arch = amd64
 conflicts = ueberzug
@@ -39,8 +39,8 @@ optdepends = libxcb-image0
 optdepends = wayland-protocols
 optdepends = libwayland-client0
 provides = ueberzug
-source = ueberzugpp-v2.8.6.tar.gz::https://github.com/jstkdng/ueberzugpp/archive/v2.8.6.tar.gz
-b2sums = 8eb661f86c55a0dcd0bc78e70437a59df4783919769e8e3514fa385e30ee44c8bdf58e47824882d11eb9bf94be2836c44b983b8d67bc2e576f60432a65dcb70d
+source = ueberzugpp-v2.8.7.tar.gz::https://github.com/jstkdng/ueberzugpp/archive/v2.8.7.tar.gz
+b2sums = 7d6c8ea082360f98bcce90cdc0eb0d8c5fc6e4765eece225be778c07f1cf91e6550e2c74b75f4edb1eaa8eaf5fd1861493c05610343693aafc428adb1d784fda
 makedepends = cmake
 makedepends = extra-cmake-modules
 makedepends = libzmq3-dev
diff --git a/PKGBUILD b/PKGBUILD
index 4307ec6..ec27e6b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: exponential <echo ZXhwb25lbnRpYWxtYXRyaXhAcHJvdG9ubWFpbC5jb20K | base64 -d>
 pkgname=ueberzugpp
-pkgver=2.8.6
-pkgrel=1
+pkgver=2.8.7
+pkgrel=0
 pkgdesc="Command line util which allows to display images in combination with X11 written in C++"
 arch=("amd64")
 url="https://github.com/jstkdng/ueberzugpp"
@@ -12,24 +12,23 @@ optmakedepends=("libcli11-dev" "libopencv-dev" "libopencv-core-dev" "libopencv-i
 depends=("libvips42" "libsixel1" "libssl1.1" "libspdlog1" "libzmq5" "libfmt7" "libchafa0" "libtbb2" "libxcb1")
 optdepends=("libopencv-core4.5" "libopencv-imgcodecs4.5" "libopencv-imgproc4.5" "libopencv-videoio4.5" "libxcb-image0" "wayland-protocols" "libwayland-client0")
 source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/jstkdng/${pkgname}/archive/v${pkgver}.tar.gz")
-b2sums=('8eb661f86c55a0dcd0bc78e70437a59df4783919769e8e3514fa385e30ee44c8bdf58e47824882d11eb9bf94be2836c44b983b8d67bc2e576f60432a65dcb70d')
+b2sums=('7d6c8ea082360f98bcce90cdc0eb0d8c5fc6e4765eece225be778c07f1cf91e6550e2c74b75f4edb1eaa8eaf5fd1861493c05610343693aafc428adb1d784fda')
 provides=("ueberzug")
 conflicts=("ueberzug" "ueberzugpp-git")
 
 build() {
-  cmake -B build -S "$pkgname-$pkgver" \
+  cmake -B "build-$pkgver" -S "$pkgname-$pkgver" \
         -DCMAKE_BUILD_TYPE='None' \
         -DCMAKE_INSTALL_PREFIX='/usr' \
         -DENABLE_TURBOBASE64=ON \
         -Wno-dev
-  cmake --build build -j $(nproc)
+  cmake --build "build-$pkgver" -j $(nproc)
 }
 
 package() {
-  DESTDIR="$pkgdir" cmake --install build
-  ln -s "/usr/bin/ueberzug" "$pkgdir/usr/bin/ueberzugpp"
-  install -Dm644 "$pkgname/LICENSE" "$pkgdir/usr/share/doc/$_pkgname/license"
-  install -Dm644 "$pkgname/README.md" "$pkgdir/usr/share/doc/$_pkgname/readme"
+  DESTDIR="$pkgdir" cmake --install "build-$pkgver"
+  install -Dm644 "$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/doc/$pkgname/license"
+  install -Dm644 "$pkgname-$pkgver/README.md" "$pkgdir/usr/share/doc/$pkgname/readme"
 }
 
 # vim:set ts=2 sw=2 et: