blob: a1142db1abf3c1f7c473938d40171f2137c2f2eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/usr/bin/env bash
# git pre-commit hook:
# - Generate the checksums in the PKGBUILD file and add it to the commit if needed
# - Generate the .SRCINFO file and add it to the commit if needed
# - Validate the PKGBUILD file
# Generate the checksums in the PKGBUILD file
updpkgsums
# Remove the archive downloaded by updpkgsums
rm *.tar.gz
# Check if the checksums in the PKGBUILD file changed
if [ -n "$(git diff PKGBUILD | grep '^+md5sums')" ]; then
printf "Updated the checksums in the PKGBUILD file\n"
git add PKGBUILD
printf "Added the PKGBUILD file to the commit\n"
fi
# Generate the .SRCINFO file based on the PKGBUILD file
makepkg --printsrcinfo > .SRCINFO
# Check if the .SRCINFO file was created/changed
if [ -n "$(git status --short | grep ' .SRCINFO$')" ]; then
printf "Updated the .SRCINFO file\n"
git add .SRCINFO
printf "Added the .SRCINFO file to the commit\n"
fi
# Validate the PKGBUILD file by "making" it
makepkg
# Check if the package was successfully built
if [ $? -eq 0 ]; then
printf "The package was successfully built\n"
fi
# Remove directories and files created/downloaded by makepkg
rm --force --recursive pkg src *.pkg.tar.xz *.tar.gz
|