Skip to content

Instantly share code, notes, and snippets.

@maidis
Created April 22, 2011 13:05
Show Gist options
  • Save maidis/936614 to your computer and use it in GitHub Desktop.
Save maidis/936614 to your computer and use it in GitHub Desktop.
Örnek bi actions.py dosyası
#!/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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure()
# varsa diğer yapılandırma işlemleri
def build():
cmaketools.make()
# varsa diğer inşa işlemleri
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
# varsa diğer kurulum işlemleri
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment