24 lines
534 B
Python
24 lines
534 B
Python
#!/usr/bin/env 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 pisitools, mesontools
|
|
|
|
|
|
def setup():
|
|
mesontools.configure("--prefix=/usr \
|
|
--libexecdir=/usr/lib/cinnamon-session \
|
|
--buildtype=plain")
|
|
|
|
|
|
def build():
|
|
mesontools.build()
|
|
|
|
|
|
def install():
|
|
mesontools.install()
|
|
|
|
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|