add cdrdao and simpleburn

This commit is contained in:
groni
2016-04-19 17:47:03 +02:00
parent 263a89cc5e
commit 35577f7f05
13 changed files with 76601 additions and 76194 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/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 pisitools
from pisi.actionsapi import cmaketools
def setup():
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBURNING=LIBBURNIA ")
def build():
cmaketools.make()
def install():
cmaketools.install()
#pisitools.dodoc("AUTHORS", "ChangeLog", "INSTALL", "LICENSE", "TODO")