sddm add pam-devel
This commit is contained in:
@@ -15,8 +15,8 @@ def setup():
|
||||
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DUSE_QT5:bool=ON \
|
||||
-DUSE_WAYLAND:bool=ON \
|
||||
-DUSE_QT5=ON \
|
||||
-DUSE_WAYLAND=ON \
|
||||
-DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/sddm \
|
||||
-DBUILD_MAN_PAGES=ON", sourceDir=".." )
|
||||
|
||||
@@ -32,4 +32,4 @@ def install():
|
||||
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.dodoc("../COPYING")
|
||||
pisitools.dodoc("../COPYING")
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/sddm \
|
||||
-DBUILD_MAN_PAGES=ON", sourceDir=".." )
|
||||
|
||||
def build():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.insinto("/usr/share/dbus-1/interfaces", "../data/interfaces/*.xml")
|
||||
|
||||
pisitools.dodoc("../COPYING")
|
||||
@@ -20,6 +20,7 @@
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>libxkbfile-devel</Dependency>
|
||||
<Dependency>pam-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>docutils</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -34,6 +35,7 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-declarative</Dependency>
|
||||
<Dependency>pam</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
|
||||
Reference in New Issue
Block a user