re2c move to core

This commit is contained in:
idriskalp
2019-12-25 19:11:40 +03:00
parent e4384b847e
commit 9b84d7d649
2 changed files with 72 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/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 pisitools
from pisi.actionsapi import autotools
def setup():
autotools.rawConfigure()
def build():
autotools.make()
def install():
autotools.install()
+54
View File
@@ -0,0 +1,54 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>re2c</Name>
<Homepage>https://github.com/skvadrik/re2c</Homepage>
<Packager>
<Name>Ergün Salman</Name>
<Email>Poyraz76@pisilinux.org</Email>
</Packager>
<License>GPL</License>
<Icon>re2c</Icon>
<IsA>Libry</IsA>
<Summary>A tool for generating C-based recognizers from regular expressions</Summary>
<Description>ACM Letters on Programming Languages and Systems (LOPLAS)</Description>
<Archive sha1sum="46e2157542e86f11fd3d9cdb1971b704decdf83e" type="targz">https://github.com/skvadrik/re2c/releases/download/1.0.3/re2c-1.0.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>gcc</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>re2c</Name>
<Files>
<Path fileType="executable">/usr/bin/</Path>
<Path fileType="library">/usr/lib/</Path>
<Path fileType="data">/usr/include/re2c/*</Path>
<Path fileType="data">/usr/lib/pkgconfig/</Path>
<Path fileType="doc">/usr/share/man/*</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2018-08-05</Date>
<Version>1.0.3</Version>
<Comment>Rebuild with new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2017-04-23</Date>
<Version>0.16</Version>
<Comment>Rebuild with new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-07-09</Date>
<Version>0.16</Version>
<Comment>First release</Comment>
<Name>Ergün Salman</Name>
<Email>Poyraz76@pisilinux.org</Email>
</Update>
</History>
</PISI>