new packages: proxychains-ng, argon2

This commit is contained in:
suvari
2022-06-21 16:38:20 +03:00
parent 99a51b7c00
commit 65de225ce5
19 changed files with 333824 additions and 333475 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
#shelltools.makedirs("proxychains-ng-4.16")
autotools.configure("--prefix=/usr --sysconfdir=/etc")
def build():
#shelltools.makedirs("proxychains-ng-4.16")
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.system("ln -s /usr/bin/proxychains4 proxychains")
pisitools.dodoc("COPYING", "README")