Commits
Helmut K. C. Tessarek authored and Perry E. Metzger committed 3bc33fad527
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup github 1.0 |
5 5 | |
6 6 | github.setup tmux tmux 2.7 |
7 7 | if {${subport} eq ${name}} { |
8 8 | conflicts tmux-devel |
9 9 | } |
10 10 | subport tmux-devel { |
11 - | github.setup tmux tmux ae0b7c7d7292d83ab46b327c4c428ca0eebbc966 |
12 - | version 20180413-[string range ${github.version} 0 6] |
11 + | github.setup tmux tmux 91b220525b0406763dafb6698d2741bec580bc10 |
12 + | version 20180504-[string range ${github.version} 0 6] |
13 13 | conflicts tmux |
14 14 | } |
15 15 | categories sysutils |
16 16 | maintainers {evermeet.cx:tessarek @tessus} |
17 17 | description terminal multiplexer |
18 18 | long_description \ |
19 19 | tmux is a \"terminal multiplexer\", it enables a number of terminals \ |
20 20 | (or windows) to be accessed and controlled from a single terminal. \ |
21 21 | tmux is intended to be a simple, modern, BSD-licensed alternative \ |
22 22 | to programs such as GNU screen. |
23 23 | homepage https://tmux.github.io |
24 24 | platforms darwin |
25 25 | license BSD |
26 26 | |
27 27 | depends_lib port:libevent port:ncurses |
28 28 | |
29 29 | if {${subport} eq ${name}} { |
30 30 | github.tarball_from releases |
31 31 | checksums rmd160 0f36f35969fb61b8d2771845deba2596b047b7b7 \ |
32 - | sha256 9ded7d100313f6bc5a87404a4048b3745d61f2332f99ec1400a7c4ed9485d452 |
32 + | sha256 9ded7d100313f6bc5a87404a4048b3745d61f2332f99ec1400a7c4ed9485d452 \ |
33 + | size 487585 |
33 34 | } |
34 35 | subport tmux-devel { |
35 - | checksums rmd160 c87897da9756c0332d535b0a38ae8215c62e3ad4 \ |
36 - | sha256 4fc00c214492aa7f472f27f827e1988f315e22981185282cad03d03179f7231f |
36 + | checksums rmd160 a26be1aecc75a143c184d2cbc78acdb2338294ab \ |
37 + | sha256 dc4bea8c650bc45973e546ad7464597cea5c88573de3b23c31378c770114d0f6 \ |
38 + | size 631005 |
37 39 | |
38 40 | use_autoreconf yes |
39 41 | autoreconf.cmd ./autogen.sh |
40 42 | autoreconf.args |
41 43 | depends_build port:autoconf \ |
42 44 | port:automake \ |
43 45 | port:libtool \ |
44 46 | port:pkgconfig |
45 47 | } |
46 48 | |