gn:First release

This commit is contained in:
Rmys
2018-09-23 18:46:49 +03:00
parent 21e43c095b
commit a45b2b1557
7 changed files with 169523 additions and 169402 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/env 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 shelltools
from pisi.actionsapi import get
def build():
shelltools.cd("build")
shelltools.system("python ./gen.py --no-sysroot")
shelltools.cd("..")
shelltools.system("ninja -C out gn")
def install():
pisitools.dobin("out/gn")
pisitools.dodoc("AUTHORS", "LICENSE", "README*")
+48
View File
@@ -0,0 +1,48 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gn</Name>
<Homepage>https://gn.googlesource.com/gn/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>Meta-build system that generates build files for Ninja</Summary>
<Description>Ninja için derleme dosyaları oluşturan meta-build sistemi</Description>
<Archive sha1sum="3600aef109a764df30fe289481ad571ae2572979" type="targz">https://sourceforge.net/projects/pisilinux/files/source/gn-0.1468.tar.gz</Archive>
<BuildDependencies>
<Dependency>git</Dependency>
<Dependency>ninja</Dependency>
</BuildDependencies>
<!--
<Patches>
<Patch>gn.patch</Patch>
<Patch level="1">gn.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>gn</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-09-21</Date>
<Version>0.1468</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gn</Name>
<Summary xml:lang="tr">Meta-build system that generates build files for Ninja</Summary>
<Description xml:lang="tr">Ninja için derleme dosyaları oluşturan meta-build sistemi</Description>
</Source>
</PISI>