xfce base

This commit is contained in:
bferturk
2016-09-06 05:28:11 +03:00
parent 603a9b507a
commit ff9e7e0483
75 changed files with 17099 additions and 2 deletions
@@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("README", "COPYING", "NEWS", "HACKING", "ChangeLog", "AUTHORS")