opps swig moved to programming/library...

This commit is contained in:
Ertuğrul Erata
2015-08-24 09:23:35 +03:00
parent c794ce6dfd
commit 97bc66ef9c
3 changed files with 123 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/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 get
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ANNOUNCE", "CHANGES*", "LICENSE", "README", "TODO")