utf8proc.

This commit is contained in:
4fury-c3440d8
2021-11-22 03:58:34 +03:00
parent 9e7b7e002b
commit daded72ecf
2 changed files with 76 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools, cmaketools, pisitools
def setup():
shelltools.makedirs("_build")
shelltools.cd("_build")
cmaketools.configure("-DBUILD_SHARED_LIBS=1", sourceDir = "..")
def build():
shelltools.cd("_build")
cmaketools.make()
def install():
shelltools.cd("_build")
cmaketools.install()
pisitools.insinto("/usr/lib/pkgconfig", "../libutf8proc.pc.in", "libutf8proc.pc")