utf8proc.

This commit is contained in:
4fury-c3440d8
2021-12-21 05:55:04 +03:00
parent ae5b083970
commit 31bf3e190b
2 changed files with 11 additions and 8 deletions
+2 -6
View File
@@ -4,12 +4,10 @@
# 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
from pisi.actionsapi import shelltools, cmaketools
def setup():
shelltools.makedirs("_build")
shelltools.cd("_build")
cmaketools.configure("-DBUILD_SHARED_LIBS=1", sourceDir = "..")
cmaketools.configure("-B_build -DBUILD_SHARED_LIBS=1")
def build():
shelltools.cd("_build")
@@ -18,5 +16,3 @@ def build():
def install():
shelltools.cd("_build")
cmaketools.install()
pisitools.insinto("/usr/lib/pkgconfig", "../libutf8proc.pc.in", "libutf8proc.pc")