procps-ng:add

This commit is contained in:
alihanozturk
2015-12-03 20:31:31 +02:00
parent 3ca3ae3c43
commit 9f88f198ab
2 changed files with 88 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.system("sed -i 's:<ncursesw/:<:g' -i watch.c")
autotools.autoreconf("-vif")
autotools.configure("--enable-watch8bit \
--without-systemd")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING*", "AUTHORS", "NEWS")
pisitools.remove("/usr/bin/kill")
pisitools.remove("/usr/share/man/man1/kill.1")
+61
View File
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>procps-ng</Name>
<Homepage>https://gitlab.com/procps-ng/procps</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<IsA>app</IsA>
<Summary>Utilities for monitoring your system and its processes</Summary>
<Description>procps is a set of command line and full-screen utilities that provide information out of the pseudo-filesystem most commonly located at /proc.</Description>
<BuildDependencies>
<Dependency>ncurses-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="1bdca65547df9ed019bd83649b0f8b8eaa017e25" type="tarxz">http://downloads.sourceforge.net/procps-ng/procps-ng-3.3.11.tar.xz</Archive>
</Source>
<Package>
<Name>procps-ng</Name>
<Summary>Utilities for monitoring your system and its processes</Summary>
<RuntimeDependencies>
<Dependency>ncurses</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="library">/usr/lib/libprocps.so.*</Path>
<Path fileType="library">/usr/lib/libprocps.a</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>procps-ng-devel</Name>
<Summary>Development files for procps-ng</Summary>
<RuntimeDependencies>
<Dependency release="current">procps-ng</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/libprocps.so</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-12-03</Date>
<Version>3.3.11</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>