gimp:moved into main repo for pisi 2.0

This commit is contained in:
2015-07-05 03:06:44 +03:00
parent a269e9e0a0
commit 2abc81994b
41 changed files with 33694 additions and 0 deletions
@@ -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("README", "COPYING", "ChangeLog", "AUTHORS")