Package Details: dotfiles-installer-git 0.9.4.2.gdcc137b-1

Git Clone URL: https://aur.archlinux.org/dotfiles-installer-git.git (read-only, click to copy)
Package Base: dotfiles-installer-git
Description: Install dotfiles easy, fast and secure.
Upstream URL: https://github.com/mylinuxforwork/dotfiles-installer
Licenses: GPL3
Submitter: fatuus
Maintainer: fatuus
Last Packager: fatuus
Votes: 0
Popularity: 0.000000
First Submitted: 2025-07-28 14:14 (UTC)
Last Updated: 2025-08-09 12:52 (UTC)

Dependencies (5)

Required by (0)

Sources (1)

Latest Comments

fatuus commented on 2025-08-09 12:55 (UTC)

thanks for bringing this up, i pushed your temporary fix until I can think of a way to actually fix it.

dema commented on 2025-08-01 18:56 (UTC) (edited on 2025-08-01 18:57 (UTC) by dema)

There's a confict with "pinta" package. They both try to install "/usr/share/icons/hicolor/scalable/actions/help-website-symbolic.svg". I'm not sure what is the best way to resolve this conflict. Temporary did this:

diff --git a/PKGBUILD b/PKGBUILD
index b93acb5..c4cc2c1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -25,4 +25,6 @@ build() {
 package() {
   cd "$srcdir/$pkgname"
   DESTDIR="$pkgdir" meson install -C build
+  # Remove file that conflicts with pinta package
+  rm -f "$pkgdir/usr/share/icons/hicolor/scalable/actions/help-website-symbolic.svg"
 }