Package Details: openbooks-bin 4.5.0-1

Git Clone URL: https://aur.archlinux.org/openbooks-bin.git (read-only, click to copy)
Package Base: openbooks-bin
Description: Openbooks allows you to download ebooks from irc.irchighway.net quickly and easily.
Upstream URL: https://github.com/evan-buss/openbooks
Keywords: ebooks irchighway openbook openbooks
Provides: openbooks
Submitter: ased.mammad
Maintainer: ased.mammad
Last Packager: ased.mammad
Votes: 4
Popularity: 0.056490
First Submitted: 2021-12-23 16:56 (UTC)
Last Updated: 2023-02-04 20:50 (UTC)

Latest Comments

BachoSeven commented on 2022-02-19 16:57 (UTC)

Here is a diff for fixing up the PKGBUILD, I also cleaned up the sources() arrays:

diff --git a/PKGBUILD b/PKGBUILD
index 0c125d9..7abf315 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,19 +9,12 @@ pkgdesc="Openbooks allows you to download ebooks from irc.irchighway.net quickly
 provides=('openbooks')
 arch=('aarch64' 'x86_64')
 url="https://github.com/evan-buss/openbooks"
-source_aarch64=(
-  "$binaryname::https://github.com/evan-buss/openbooks/releases/download/v$pkgver/openbooks_linux_arm"
-  "https://raw.githubusercontent.com/evan-buss/openbooks/master/README.md"
-)
-source_x86_64=(
-  "$binaryname::https://github.com/evan-buss/openbooks/releases/download/v$pkgver/openbooks_linux"
-  "https://raw.githubusercontent.com/evan-buss/openbooks/master/README.md"
-)
-
-sha256sums_aarch64=('ac617ed45fc644a66398747531f7840c68b825ac60ca326f9306193f937231c8'
-                    'e3f01a7b7210b404d75ab12101eea2dbaafdf859f51a89e98fe3a2ca957f4b99')
-sha256sums_x86_64=('ac617ed45fc644a66398747531f7840c68b825ac60ca326f9306193f937231c8'
-                   'e3f01a7b7210b404d75ab12101eea2dbaafdf859f51a89e98fe3a2ca957f4b99')
+source_x86_64=("$binaryname::https://github.com/evan-buss/openbooks/releases/download/v$pkgver/openbooks_linux")
+source_aarch64=("$binaryname::https://github.com/evan-buss/openbooks/releases/download/v$pkgver/openbooks_linux_arm")
+source=("https://raw.githubusercontent.com/evan-buss/openbooks/master/README.md")
+sha256sums_x86_64=('accc03c211dba75be461dc45713a5eb98bf3218371224398d388770dc1398644')
+sha256sums_aarch64=('ac617ed45fc644a66398747531f7840c68b825ac60ca326f9306193f937231c8')
+sha256sums=('e3f01a7b7210b404d75ab12101eea2dbaafdf859f51a89e98fe3a2ca957f4b99')

 package() {
   install -Dm755 -t "${pkgdir}/usr/bin" \

BachoSeven commented on 2022-02-18 21:58 (UTC)

@ased.mammad, thanks for updating the packages to the latest version.

However, the checksums for the updated files are failing. Either update them manually, or simply run the handy updpkgsums command (from the pacman-contrib package) to update the checksums from the PKGBUILD's directory, as mentioned for instance at the end of this wiki paragraph.

ased.mammad commented on 2022-01-22 09:31 (UTC)

@BachoSevenm, It's done, Thanks.

BachoSeven commented on 2022-01-01 21:41 (UTC) (edited on 2022-01-22 10:53 (UTC) by BachoSeven)

@ased.mammad, please remove the empty arrays from the PKGBUILD, as it's deprecated and actually not permitted by makepkg:

https://github.com/Morganamilo/paru/issues/335#issuecomment-822330968