telepathy-logger:add pisi-2.0 and v.bump

This commit is contained in:
alihanozturk
2015-11-22 11:51:42 +02:00
parent 7202748da2
commit ecd82c205b
3 changed files with 135 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
#autotools.autoreconf("-vfi")
autotools.configure("--disable-static \
--libexecdir=/usr/lib \
--enable-call \
--enable-shared \
--with-gconf-schema-file-dir=/etc/gconf/schemas")
def build():
autotools.make("-j1")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README", "NEWS", "TODO")