summarylogtreecommitdiffstats
path: root/Makefile
blob: 552f752d712c66e244798b7ac5e37e722d08ef2a (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

# This will update the checksums and build the package
all: updateinfo
	makepkg -sr
# Check if any files are world writable
	find pkg/typora -type f -perm -o+w -printf "WARNING: '%p' has o+w set\n"

# This will do the same as all, but will install it to the local system as well
install: updateinfo
	makepkg -sri
# Check if any files are world writable
	find pkg/typora -type f -perm -o+w -printf "WARNING: '%p' has o+w set\n"

# This will update the checksums and .SRCINFO
updateinfo:
	updpkgsums
	makepkg --printsrcinfo > .SRCINFO

# This will update PKGBUILD with the latest version and build the package
update:
	sed 's/^pkgver=.*$$/pkgver=$(shell curl -s https://www.typora.io/linux/Packages | grep Version | cut -f 2 -d ' ' | sort -V | cut -f 1 -d '-' | uniq | tail -n 1)/' -i PKGBUILD
	sed 's/^pkgrel=.*$$/pkgrel=1/' -i PKGBUILD
	$(MAKE)

# This will list the versions available in the Ubuntu repository
versions:
	curl -s https://www.typora.io/linux/Packages | grep Version | cut -f 2 -d ' ' | sort -V | cut -f 1 -d '-' | uniq

# This will remove the files downloaded and created in the build process
clean:
	rm -rf pkg src typora_*.deb typora-*.pkg.*

publish:
	git add .
	git commit -m "Update to version $(shell sed -n 's/^pkgver=\(.*\)$$/\1/p' PKGBUILD)"
#	git push