Created
April 22, 2011 13:05
-
-
Save maidis/936614 to your computer and use it in GitHub Desktop.
Örnek bi actions.py dosyası
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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