Package Details: strings 1.0-1

Git Clone URL: https://aur.archlinux.org/strings.git (read-only, click to copy)
Package Base: strings
Description: Strings is another bad static string library, written in C.
Upstream URL: https://github.com/dimalmfao/strings
Licenses: GPL-3.0
Submitter: dimalmfao
Maintainer: dimalmfao
Last Packager: dimalmfao
Votes: 1
Popularity: 0.000001
First Submitted: 2024-06-04 06:30 (UTC)
Last Updated: 2024-06-04 06:30 (UTC)

Dependencies (1)

Required by (2)

Sources (1)

Latest Comments

pwrplt77 commented on 2026-01-21 00:45 (UTC)

This no longer compiles due to a hash mismatch. If you would like, this patch will temporarily fix the problem but I would recommend finding a more permanent solution in time. Thanks!

diff --git a/.SRCINFO b/.SRCINFO
index 4ad0611..153d7e3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
 pkgbase = strings
        pkgdesc = Strings is another bad static string library, written in C.
        pkgver = 1.0
-       pkgrel = 1
+       pkgrel = 2
        url = https://github.com/dimalmfao/strings
        arch = any
        license = GPL-3.0
        depends = gcc
-       source = strings-1.0.tar.gz::https://github.com/dimalmfao/strings/archive/master.tar.gz
-       sha256sums = 55b6df89380a44f546989454fcf8e3451d1fdea1698d1e0537677366d1d384cb
+       source = strings-1.0.tar.gz::https://github.com/prisect/strings/archive/0bcb998afcd7d4f6cfefa5b0c1140dfb4df00469.tar.gz
+       sha256sums = 840f860816634d14e038c98f28fd518e134998274771e628a09cef194448af7d

 pkgname = strings
diff --git a/PKGBUILD b/PKGBUILD
index a5732e1..cf6ac32 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,22 +1,22 @@
 # Maintainer: Dima Volkov <dimaac@bk.ru>
 pkgname=strings
 pkgver=1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Strings is another bad static string library, written in C."
 arch=('any')
 url="https://github.com/dimalmfao/strings"
 license=('GPL-3.0')
 depends=('gcc')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dimalmfao/strings/archive/master.tar.gz")
-sha256sums=('55b6df89380a44f546989454fcf8e3451d1fdea1698d1e0537677366d1d384cb')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/prisect/strings/archive/0bcb998afcd7d4f6cfefa5b0c1140dfb4df00469.tar.gz")
+sha256sums=('840f860816634d14e038c98f28fd518e134998274771e628a09cef194448af7d')

 build() {
-  cd "$srcdir/strings-master"
+  cd "$srcdir/strings-0bcb998afcd7d4f6cfefa5b0c1140dfb4df00469"
   make compile lib
 }

 package() {
-  cd "$srcdir/strings-master"
+  cd "$srcdir/strings-0bcb998afcd7d4f6cfefa5b0c1140dfb4df00469"
   make install DESTDIR="$pkgdir"
 }

-- 
2.52.0