blob: 0aa4e3abb492fc26e1dc8210d4058b1dd5db2756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# This will update the checksums and build the package
all: updateinfo
makepkg -sr
# This will do the same as all, but will install it to the local system as well
install: updateinfo
makepkg -sri
# This will update the checksums and .SRCINFO
updateinfo:
updpkgsums
makepkg --printsrcinfo > .SRCINFO
# This will remove the files downloaded and created in the build process
clean:
rm -rf pkg src yass-reloaded-*.pkg.* *.jar
publish:
git add .
git commit -m "Update to version $(shell sed -n 's/^pkgver=\(.*\)$$/\1/p' PKGBUILD)"
# git push
|