summaryrefslogtreecommitdiff
path: root/opt/tig/MAKEPKG
blob: c1eec95ea4a70bfed6e5c7e33c29fae98f6aee56 (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
#!/bin/mkpkg
# description: Text-mode interface for git
# url:         https://github.com/jonas/tig

name=tig
version=2.6.1
release=1
source=(https://github.com/jonas/tig/releases/download/tig-$version/tig-$version.tar.gz)

sha256sums=(
    "5adeabdcd93aa0423d618da8b878b53482bef6e0e9e1fe224acc0f18031fe91e"
)

build() {
	cd $name-$version

	./configure \
		--prefix=/usr \
        -sysconfdir=/etc \
		--mandir=/usr/share/man \
		--with-ncurses \
		--with-readline

	make
	make DESTDIR=$PKG install install-doc-man
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh