Proje Gitea'ya taşındı (Temiz başlangıç)

This commit is contained in:
Erkan IŞIK
2026-06-27 23:27:13 +03:00
commit c077995f65
683 changed files with 315285 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/python
import os
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
libs=["libpcsclite.so","libpcsclite.so.1", "libpcsclite.so.1.0.0"]
os.system("mkdir -p /usr/lib64/")
for i in libs:
os.system("ln -s /usr/lib/%s /usr/lib64/" % i)
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/python
import os
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
os.system("mkdir -p /usr/lib64/")
os.system("ln -s /usr/lib/x86_64-linux-gnu/libpcsclite.so /usr/lib64/")
os.system("ln -s /usr/lib/x86_64-linux-gnu/libpcsclite.so.1 /usr/lib64/")
os.system("ln -s /usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 /usr/lib64/")