Package Details: reveng 3.0.5-1

Git Clone URL: https://aur.archlinux.org/reveng.git (read-only, click to copy)
Package Base: reveng
Description: Arbitrary-precision CRC calculator and algorithm finder
Upstream URL: http://reveng.sourceforge.net/
Licenses: GPL
Submitter: nemSoma
Maintainer: nemSoma
Last Packager: nemSoma
Votes: 3
Popularity: 0.000018
First Submitted: 2020-05-22 14:33 (UTC)
Last Updated: 2022-12-18 10:50 (UTC)

Latest Comments

apreiml commented on 2021-08-30 13:33 (UTC) (edited on 2021-08-30 13:33 (UTC) by apreiml)

hi, following patch would upgrade to the newest version and removes the error when stripping the binary:

diff --git a/PKGBUILD b/PKGBUILD
index ae352e7..d48c963 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,19 @@
 # Maintainer: Soma Zambelly <zambelly.soma@gmail.com>
 pkgname=reveng
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=2
 pkgdesc="Arbitrary-precision CRC calculator and algorithm finder"
 arch=(x86_64)
 url="http://reveng.sourceforge.net/"
 license=('GPL')
 source=("https://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-$pkgver.tar.xz/download")
-sha256sums=("7058c7c653692c66849e8a5f5c7f5d69fbead9c1ccc012e1844c7299ddf0e730")
+sha256sums=("75261d473b32847df5f0be1837edc89abbaae87c8a81564dd7cb2af340bf8cb1")

 build() {
    cd "$pkgname-$pkgver"
    sed -i 's/#define BMP_BIT   32/#define BMP_BIT   64/' config.h
    sed -i 's/#define BMP_SUB   16/#define BMP_SUB   32/' config.h
+   sed -i 's/-$(STRIP) $(SFLAGS) $@ $@$(EXT)/-$(STRIP) $(SFLAGS) $@/' Makefile
    make
 }