blob: 14395bf98b9393ed4111e1f80b0f9727d46c8d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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 UltraStar-Manager ultrastar-manager-*.pkg.*
|