Search Criteria
Package Details: sacd-extract 0.3.9.3-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/sacd-extract.git (read-only, click to copy) |
---|---|
Package Base: | sacd-extract |
Description: | Extract DSD files from an SACD image |
Upstream URL: | https://sacd-ripper.github.io/ |
Licenses: | GPL2 |
Submitter: | spider-mario |
Maintainer: | ToadKing |
Last Packager: | ToadKing |
Votes: | 22 |
Popularity: | 0.051552 |
First Submitted: | 2014-02-26 09:53 (UTC) |
Last Updated: | 2025-08-17 20:23 (UTC) |
Latest Comments
TomB19 commented on 2025-08-17 23:45 (UTC)
Confirmed working. Thank you, TK. I really appreciate it.
ToadKing commented on 2025-08-17 20:24 (UTC)
@TomB19 I pushed a fix for CMake. Sorry, I must have missed that original comment from months back.
TomB19 commented on 2025-08-17 18:46 (UTC)
If ToadKing doesn't wish to maintain this, I will offer to take care of it. It would be nice to have this available in the AUR again.
TomB19 commented on 2025-08-17 16:34 (UTC)
I accidentally filed a deletion request for this package. Please accept my profound apology. There is no need to delete this package. This package can be easily repaired with the following PKGBUILD Update:
build() { cd sacd-ripper rm -fr build mkdir build cd build
# Update CMake version requirement before running cmake sed -i 's/cmake_minimum_required(VERSION 2.6)/cmake_minimum_required(VERSION 3.5)/' ../tools/sacd_extract/CMakeLists.txt
CFLAGS=-Wno-incompatible-pointer-types cmake ../tools/sacd_extract/ make }
tpaniaki commented on 2025-06-07 15:38 (UTC)
@zacjor thank you very much for this.
zacjor commented on 2025-05-20 21:31 (UTC)
I added this before my build() and it works for me.
spider-mario commented on 2025-05-08 17:12 (UTC) (edited on 2025-05-08 17:13 (UTC) by spider-mario)
The
PKGBUILD
itself only callscmake
on theCMakeLists.txt
file from upstream, where the problem lies. ThatCMakeLists.txt
probably needs at least a small patch to change thecmake_minimum_required(VERSION 2.6)
to something likecmake_minimum_required(VERSION 2.6..4.0)
(possibly more changes but maybe not).Therefore, the change needed in the
PKGBUILD
would be to apply a patch like that to theCMakeLists.txt
after extracting, either using a proper patch or possibly something more basic likesed
if the change to thecmake_minimum_required
line is enough.https://wiki.archlinux.org/title/Creating_packages#prepare%28%29
HisDudeness commented on 2025-05-08 07:43 (UTC)
Trying to install the package, I get this error:
I opened the PKGBUILD to see if I could catch any reference to a specific older version of CMake, but I couldn't find any. I'm just too ignorant for this.