dash-0.5.12

This commit is contained in:
uglyside
2025-05-16 13:48:09 +03:00
parent 343b871a3d
commit 5f5538b19d
2 changed files with 16 additions and 7 deletions
+3 -2
View File
@@ -2,14 +2,14 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/")
autotools.configure("--prefix=/usr")
def build():
autotools.make()
@@ -17,4 +17,5 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dosym("/usr/bin/dash", "/bin/dash")
pisitools.dodoc("COPYING")