blob: 86f41ce1bff25b1abd27c50e3a1f5199b6001dce (
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
|
.PHONY: all
all: build git install
.PHONY: clean
clean:
rm -r src pkg || true
.PHONY: geninteg
geninteg:
sed -i '/.*sums=(/,$$d' PKGBUILD
makepkg --geninteg >> PKGBUILD
.PHONY: srcinfo
srcinfo:
makepkg --printsrcinfo > .SRCINFO
.PHONY: makepkg
makepkg:
makepkg -s
.PHONY: build
build: geninteg srcinfo makepkg
.PHONY: git
git: git_add git_commit
.PHONY: git_add
git_add:
git add PKGBUILD .SRCINFO Makefile
.PHONY: git_commit
git_commit: VERSION = "$(shell grep pkgver .SRCINFO | cut -d '=' -f 2 | tr -d '[:space:]')"
git_commit: GIT_STATUS = "$(shell git status --porcelain)"
git_commit:
[ -n ${GIT_STATUS} ] && git commit -m "Update to ${VERSION}"
.PHONY: install
install:
makepkg --repackage --install --force
|