tpm2-tss: major version bump

This commit is contained in:
bluedevil
2020-09-24 00:02:36 +02:00
parent 9fc0e54fc4
commit bf9b87451d
3 changed files with 38 additions and 14 deletions
+9 -4
View File
@@ -4,15 +4,20 @@
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
def setup():
autotools.configure("--with-tmpfilesdir=/usr/lib/tmpfiles.d \
--enable-static=no \
shelltools.system("./bootstrap")
autotools.configure("--enable-static=no \
--with-udevrulesprefix=60- \
--with-tmpfilesdir=/usr/lib/tmpfiles.d \
--with-sysusersdir=/usr/lib/sysusers.d")
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
@@ -20,4 +25,4 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "CHANGELOG*", "LICENSE", "README*")
pisitools.dodoc("LICENSE", "README*")