2023-01-13 09:49:40 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-03-10 12:24:35 -07:00
|
|
|
# This work is marked with CC0 1.0. To view a copy of this license, visit
|
|
|
|
# <http://creativecommons.org/publicdomain/zero/1.0>.
|
2023-01-13 09:49:40 -07:00
|
|
|
|
2023-03-10 12:24:35 -07:00
|
|
|
# Git hook to generate & add .SRCINFO to AUR PKGBUILD commits.
|
2023-01-13 09:49:40 -07:00
|
|
|
|
|
|
|
makepkg --printsrcinfo > .SRCINFO
|
|
|
|
git add .SRCINFO
|