new package and package move

This commit is contained in:
Erkan IŞIK
2026-07-11 23:49:28 +03:00
parent 6083827a02
commit 15982225e9
41 changed files with 113 additions and 33 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)