Search Criteria
Package Details: arch-diff 0.2-2
Git Clone URL: | https://aur.archlinux.org/arch-diff.git (read-only, click to copy) |
---|---|
Package Base: | arch-diff |
Description: | Perform a full diff between all pacman packages and the file system |
Upstream URL: | https://github.com/aneas/arch-diff |
Licenses: | |
Submitter: | aneaz |
Maintainer: | aneaz (Unia) |
Last Packager: | Unia |
Votes: | 4 |
Popularity: | 0.000000 |
First Submitted: | 2015-09-21 13:35 |
Last Updated: | 2018-07-16 20:51 |
Latest Comments
aneaz commented on 2016-05-25 12:45
Thanks guys. I added both changes. Sorry it took so long...
Unia commented on 2016-02-16 22:50
After the Pacman 5.0 update, arch-diff started spewing out a lot of "[missing] ./BUILDINFO" lines. I opened an issue and followed up with a pull request to fix this[1, 2] but as of yet I have not received a reply from aneaz (I will try an email soon).
Until then, you can take my patched fork of arch-diff which fixes the issue: https://github.com/Unia/arch-diff. For a PKGBUILD, see: https://gist.github.com/Unia/c0e0e873c7ffbade8aa7 (This PKGBUILD also fixes the issue described below by sekret).
[1]: https://github.com/aneas/arch-diff/issues/2
[2]: https://github.com/aneas/arch-diff/pull/4
sekret commented on 2016-02-04 08:06
Your package installs into /usr/local/bin, because you didn't set PREFIX=/usr
So please change this line
make DESTDIR="$pkgdir/" install
to this
make PREFIX=/usr DESTDIR="$pkgdir/" install