1
0
forked from ports/contrib

tig: update to 2.3.2, new URL, fix man-page location

This commit is contained in:
Juergen Daubert 2018-01-29 18:53:05 +01:00
parent 3fdb60cd4c
commit d6d35db379
4 changed files with 19 additions and 19 deletions

View File

@ -3,10 +3,11 @@ drwxr-xr-x root/root etc/
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/tig
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/tig.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/tigrc.5.gz
drwxr-xr-x root/root usr/man/man7/
-rw-r--r-- root/root usr/man/man7/tigmanual.7.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/tig.1.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/tigrc.5.gz
drwxr-xr-x root/root usr/share/man/man7/
-rw-r--r-- root/root usr/share/man/man7/tigmanual.7.gz

View File

@ -1 +1 @@
11c1c3c54a8c9883b14a35ba1dad0b87 tig-2.2.tar.gz
9a9c335258d768ec10c7f1f2de4aca26 tig-2.3.2.tar.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39gLxsN1pw0w6AKpPIrsJAc3bjnewRfrYyECHW6uxCPK+ngcCERqab9GDl8mppQ1nJqlVTMTZ7sHeJQVW1VCQA8=
SHA256 (Pkgfile) = 21e9bdd614c242a6b1b6780b2c0facce715e052e0d7adce2633d62af42cf8cee
SHA256 (.footprint) = 8b3b305be410efab414eed5af323d496a4da847673d0bc6b04d6cc2ec6f4178d
SHA256 (tig-2.2.tar.gz) = 8f5213d3abb45ca9a79810b8d2a2a12d941112bc4682bcfa91f34db74942754c
RWSagIOpLGJF3+v2+xSzyf4gmImW68uf+tkhUK9lFeWxF4HB40GHHbcffVamtj8k455W3dzRhF6tP/viOB9cbVz0D8PA0kEOUwU=
SHA256 (Pkgfile) = 446cc7a7234672b5fe3f180c5c0c341df189907481f2d0a930ccd705c2117b19
SHA256 (.footprint) = d515a1aa9c903166a8aa52dbc14747d06f1c59c59d1f8f4180c55602d8915e69
SHA256 (tig-2.3.2.tar.gz) = 6410e51c6149d76eac3510d04f9a736139f85e7c881646937d009caacf98cff1

View File

@ -1,19 +1,18 @@
# Description: text-mode interface for git
# URL: http://jonas.nitro.dk/tig/
# URL: https://github.com/jonas/tig
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: git
name=tig
version=2.2
version=2.3.2
release=1
source=(http://jonas.nitro.dk/$name/releases/$name-$version.tar.gz)
source=(https://github.com/jonas/tig/releases/download/$name-$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man --sysconfdir=/etc
./configure --prefix=/usr --sysconfdir=/etc
make LDLIBS="-lncursesw -lreadline"
make prefix=/usr DESTDIR=$PKG install-doc-man install
make
make DESTDIR=$PKG install install-doc-man
}