libinput:moved into main repo for pisi 2.0

This commit is contained in:
2015-07-21 16:14:36 +03:00
parent fccb393db7
commit a799d44bab
3 changed files with 116 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dosym("libinput.so.5.0.0","/usr/lib/libinput.so.0")
#pisitools.dodoc("COPYING", "README")