Package Details: sfbrename-gtk 1.0.0-1

Git Clone URL: https://aur.archlinux.org/sfbrename-gtk.git (read-only, click to copy)
Package Base: sfbrename-gtk
Description: Simple bulk rename utility (GTK+ GUI and CLI tool)
Upstream URL: https://github.com/karwler/sfbrename
Licenses: custom
Conflicts: sfbrename-cli
Provides: sfbrename
Submitter: karwler
Maintainer: karwler
Last Packager: karwler
Votes: 1
Popularity: 0.000023
First Submitted: 2022-06-23 16:44 (UTC)
Last Updated: 2022-06-24 16:22 (UTC)

Required by (0)

Sources (1)

Latest Comments

MindWithCake commented on 2026-04-01 10:09 (UTC)

I had no issues installing this a while ago, but today the build process failed due to a compiler warning. To correctly build it I changed the PKGBUILD 'build()' block to disable the warning:

build() {
    cd "$srcdir/$_pkgname"
    export CFLAGS+=" -Wno-discarded-qualifiers"
    cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc -DCMAKE_INSTALL_PREFIX="$pkgdir/usr"
    make
}