customizepkg
customizepkg copied to clipboard
A tool for Arch Linux package manager pacman to modify PKGBUILD automatically
I'm creating this issue just to give info to googlers. It is fixed in #29 ``` /usr/bin/customizepkg: line 167: warning: command substitution: ignored null byte in input /usr/bin/customizepkg: eval: line...
# Patch the source # Patch files can be applied to the source code using the following syntax: ``` patch#1#file.patch ``` In the original repo this generate a line in...
I created /etc/customizepkg.d/linux. But whenever i run pacman -S linux (or yay -S linux), it doesn't compile with PKGBUILD like expected. It just installs normally. What i'm doing wrong?
This fixes #32. I tested it a bit but not exhaustively.
I just found out about your tool and it seems to be just the tool I missed for a while, I have only one gripe with it: It forces me...
Fixes https://github.com/ava1ar/customizepkg/issues/24. Patch by @bartoszek, given in that issue.
PKGBUILD without the normal header are ignored. Since they begin with a non-printable character, causing the initial `pkgname` parsing to ignore the option. One example is the `mutt-sidebar` package. To...
due to using read -r, you can't do a replacement that has a # in the pattern, because read just recognises the # as the delimiter and you can't escape...
In many PKGBUILD there is an extra subdir in $srcdir in which the build process occurs. Patch option wont work for those packages as it use relative path. In order...
Before patching a PKGBUILD the patch file was added to PKGBUILD as one of sources which breaks the build script. PKGBUILD : [gpx-git](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=gpx-git) PKGBUILD.patch : http://pastebin.com/PPiY9kXC /etc/customizepkg.d/gpx-git : `patch#pkgbuild#PKGBUILD.patch` customizepkg...