libX11 and deps in main...

This commit is contained in:
Ertuğrul Erata
2015-06-20 09:28:59 +03:00
parent f7172e3b1f
commit 7c3dfc0764
22 changed files with 839 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
<PISI>
<Name>programming.library</Name>
</PISI>
+25
View File
@@ -0,0 +1,25 @@
#!/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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--disable-static \
--disable-silent-rules")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# solve conflict with elfutils and glibc-devel
# pisitools.remove("/usr/include/nlist.h")
# pisitools.remove("/usr/lib/libbsd.a")
pisitools.dodoc("ChangeLog", "COPYING", "README", "TODO")
+49
View File
@@ -0,0 +1,49 @@
<PISI>
<Source>
<Name>libbsd</Name>
<Homepage>http://libbsd.freedesktop.org</Homepage>
<Packager>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<License>BSD-2</License>
<License>BSD-4</License>
<License>ISC</License>
<IsA>library</IsA>
<Summary>Provides useful functions commonly found on BSD systems</Summary>
<Description>This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making it easier to port projects with strong BSD origins, without needing to embed the same code over and over again on each project.</Description>
<Archive sha1sum="1c52cda755f184f4a1f41b2e35a5f9b57300fbfd" type="tarxz">http://libbsd.freedesktop.org/releases/libbsd-0.6.0.tar.xz</Archive>
</Source>
<Package>
<Name>libbsd</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libbsd-devel</Name>
<Summary>Development files for libbsd</Summary>
<RuntimeDependencies>
<Dependency release="current">libbsd</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="man">/usr/share/man/man3</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2014-03-09</Date>
<Version>0.6.0</Version>
<Comment>Fisrt release.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libbsd</Name>
<Summary xml:lang="tr">Taşınabilirlik için BSD uyumlu fonksiyonlar sağlayan bir kitaplık.</Summary>
<Description xml:lang="tr">GNU Linux sistemlerde bulunmayan BSD sistemlere özgü fonsiyonları barındıran bir kitaplıktır ve BSD uygulamalarının GNU Linux'a taşınmasını kolaylaştırır.</Description>
</Source>
</PISI>