libtdb, dep for pulseaudio

This commit is contained in:
Ertuğrul Erata
2015-07-08 10:59:49 +03:00
parent 845faa5125
commit 7b57d439d4
3 changed files with 129 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
shelltools.export("JOBS", get.makeJOBS().replace("-j", ""))
def setup():
autotools.configure("\
--builtin-libraries=replace \
--bundled-libraries=NONE \
--disable-rpath \
")
def build():
shelltools.system("make")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("docs/README")