Ticket #47951: Portfile-tmux.diff
File Portfile-tmux.diff, 2.5 KB (added by xuchunyang (Chunyang Xu), 9 years ago) |
---|
-
Portfile
old new 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 # $Id: Portfile 136253 2015-05-13 16:36:25Z larryv@macports.org $ 3 3 4 PortSystem 1.0 4 PortSystem 1.0 5 PortGroup github 1.0 5 6 6 name tmux 7 conflicts tmux-devel 8 version 2.0 9 categories sysutils10 maintainers evermeet.cx:tessarek11 description terminal multiplexer7 github.setup tmux tmux 2.0 8 revision 1 9 conflicts tmux-devel 10 categories sysutils 11 maintainers evermeet.cx:tessarek 12 description terminal multiplexer 12 13 long_description \ 13 14 tmux is a \"terminal multiplexer\", it enables a number of terminals \ 14 15 (or windows) to be accessed and controlled from a single terminal. \ 15 16 tmux is intended to be a simple, modern, BSD-licensed alternative \ 16 17 to programs such as GNU screen. 17 homepage http://tmux.sourceforge.net/ 18 platforms darwin 19 license BSD 20 master_sites sourceforge:project/tmux/tmux/tmux-${version}/ 18 homepage http://tmux.github.io/ 19 platforms darwin 20 license BSD 21 21 22 checksums rmd160 5114e1e9d78667291375efcbd9be657b4f175806 \ 23 sha256 795f4b4446b0ea968b9201c25e8c1ef8a6ade710ebca4657dd879c35916ad362 22 github.tarball_from releases 24 23 25 depends_lib port:libevent port:ncurses 24 distname tmux-${version} 25 26 checksums rmd160 5114e1e9d78667291375efcbd9be657b4f175806 \ 27 sha256 795f4b4446b0ea968b9201c25e8c1ef8a6ade710ebca4657dd879c35916ad362 28 29 depends_lib port:libevent port:ncurses 26 30 27 31 platform darwin 8 { 28 32 # On Mac OS X 10.4 there's no libproc.h, so we use a previous version of osdep-darwin.c (c1b9948) … … 48 52 49 53 notes "If you want integration with system pasteboard consider installing port tmux-pasteboard as well" 50 54 51 livecheck.type regex52 livecheck.url ${homepage}53 livecheck.regex ${name}-(\[0-9\]+\\.\[0-9a-z\]+)${extract.suffix}54 55 55 subport tmux-devel { 56 56 conflicts tmux 57 57 … … 59 59 version 20150513-[string range $git_sha1 0 6] 60 60 61 61 fetch.type git 62 git.url http ://git.code.sf.net/p/tmux/tmux-code.git62 git.url https://github.com/tmux/tmux.git 63 63 git.branch $git_sha1 64 64 65 65 use_autoreconf yes