Merge pull request #10421 from suvari/master

proxychains-ng: create config file
This commit is contained in:
Kamil ATLI
2022-06-22 16:19:04 +03:00
committed by GitHub
2 changed files with 11 additions and 4 deletions
+9 -3
View File
@@ -10,15 +10,21 @@ from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
#shelltools.makedirs("proxychains-ng-4.16")
autotools.configure("--prefix=/usr --sysconfdir=/etc")
shelltools.makedirs("proxychains-ng-4.16")
autotools.configure("./configure --prefix=/usr --sysconfdir=/etc")
def build():
#shelltools.makedirs("proxychains-ng-4.16")
shelltools.makedirs("proxychains-ng-4.16")
autotools.make()
def install():
shelltools.makedirs("proxychains-ng-4.16")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
autotools.rawInstall("DESTDIR=%s install-config" % get.installDIR())
shelltools.system("ln -s /usr/bin/proxychains4 proxychains")
# Install config file
autotools.rawInstall("DESTDIR=%s install-config" % get.installDIR())
pisitools.dodoc("COPYING", "README")
+2 -1
View File
@@ -27,13 +27,14 @@
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="config">/etc/proxychains.conf</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-06-21</Date>
<Date>2022-06-22</Date>
<Version>4.16</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>