search: add export patches/cherry-pick functionality to search
[ugit.git] / ugit / wscript
blobc655b96bd4bfce1e209f451800ba0134954e84a7
1 #!/usr/bin/env python
2 import Common
3 def build(bld):
4 # Compile the controllers
5 bld.add_subdirs('views controllers')
6 # Compile the ugit support modules
7 pyqt = bld.create_obj('py')
8 pyqt.inst_var = 'UGIT_MODULES'
9 pyqt.find_sources_in_dirs('.')
11 # Install the git-ugit launcher
12 Common.install_files('UGIT_BINDIR', '', 'git-ugit', chmod=0755)
13 Common.symlink_as('UGIT_BINDIR', 'git-ugit', 'ugit')