oniguruma add to repo

This commit is contained in:
idriskalp
2020-02-22 19:40:11 +03:00
parent f5df766cee
commit 21a1823eb8
2 changed files with 76 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/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
from pisi.actionsapi import shelltools
WorkDir = "onig-%s" %get.srcVERSION()
def setup():
autotools.autoreconf("-vfi")
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
pisitools.dodoc("COPYING", "README*", "AUTHORS", "ChangeLog")
+50
View File
@@ -0,0 +1,50 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>oniguruma</Name>
<Homepage>https://github.com/kkos/oniguruma/</Homepage>
<Packager>
<Name>İdris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>A regular expressions library</Summary>
<Description>Oniguruma is a modern and flexible regular expressions library. It encompasses features from different regular expression implementations that traditionally exist in different languages.</Description>
<Archive sha1sum="894a6285ccea5c63e289b0379df833f66fa8fe3a" type="targz">https://github.com/kkos/oniguruma/releases/download/v6.9.4/onig-6.9.4.tar.gz</Archive>
</Source>
<Package>
<Name>oniguruma</Name>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/</Path>
<Path fileType="man">/usr/share/man/man1</Path>
</Files>
</Package>
<Package>
<Name>oniguruma-devel</Name>
<Summary>Development files for oniguruma</Summary>
<RuntimeDependencies>
<Dependency release="current">oniguruma</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-02-22</Date>
<Version>6.9.4</Version>
<Comment>First release.</Comment>
<Name>İdris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
</History>
</PISI>