tmux package added

This commit is contained in:
Hasan Basri
2019-02-14 01:07:16 +03:00
parent fb916dc16b
commit dd4a30bf8b
3 changed files with 106 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("PREFIX=/%s DESTDIR=%s" % (get.defaultprefixDIR(), get.installDIR()))
# we love vim
#pisitools.insinto("/usr/share/vim/vimfiles/syntax/", "examples/tmux.vim", "tmux.vim")
#pisitools.insinto("/usr/share/doc/tmux/examples", "examples/*")
#pisitools.remove("/usr/share/doc/tmux/examples/tmux.vim")
# Bash completion
#pisitools.domove("/usr/share/doc/tmux/examples/bash_completion_tmux.sh", "/etc/bash_completion.d", "tmux")
#pisitools.dodoc("CHANGES", "FAQ")
+70
View File
@@ -0,0 +1,70 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>tmux</Name>
<Homepage>http://tmux.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<License>ISC</License>
<IsA>app:console</IsA>
<Summary>A terminal multiplexer</Summary>
<Description>Tmux is a terminal multiplexer. It's similar to GNU Screen.</Description>
<Archive sha1sum="6a469769a242c95dc8aec443b436d4f8f279f517" type="targz">https://github.com/tmux/tmux/releases/download/2.8/tmux-2.8.tar.gz</Archive>
<BuildDependencies>
<Dependency>libevent-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>tmux</Name>
<RuntimeDependencies>
<Dependency>libevent</Dependency>
<Dependency>ncurses</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="config">/etc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2019-02-13</Date>
<Version>2.8</Version>
<Comment>Version bump.</Comment>
<Name>Hasan Basri</Name>
<Email>hbasria@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2015-01-25</Date>
<Version>1.9</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2011-12-09</Date>
<Version>1.8</Version>
<Comment>Version Bump</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-09-28</Date>
<Version>1.5</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>tmux</Name>
<Summary xml:lang="tr">Bir terminal çoğaltıcı uygulaması</Summary>
<Description xml:lang="tr">tmux bir terminal çoğaltıcısıdır. GNU screen gibi terminal pencerenizi birden fazla parçalara bölerek çalışmanızı sağlar.</Description>
</Source>
</PISI>