mirror of
https://frontier.innolan.net/github/amigaos-cross-toolchain6.git
synced 2024-10-19 10:29:55 +00:00
Add fd2pragma tool.
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -22,3 +22,6 @@
|
||||
[submodule "submodules/python-lhafile"]
|
||||
path = submodules/python-lhafile
|
||||
url = git://github.com/FrodeSolheim/python-lhafile
|
||||
[submodule "submodules/fd2pragma"]
|
||||
path = submodules/fd2pragma
|
||||
url = https://github.com/adtools/fd2pragma.git
|
||||
|
||||
1
submodules/fd2pragma
Submodule
1
submodules/fd2pragma
Submodule
Submodule submodules/fd2pragma added at 68089f8a6f
@ -91,6 +91,13 @@ def headers_install():
|
||||
copytree('{sources}/{ixemul}/include', '{prefix}/{target}/libnix/include')
|
||||
|
||||
|
||||
@recipe('fd2pragma-install')
|
||||
def install_fd2pragma():
|
||||
info('installing fd2pragma')
|
||||
|
||||
copy('{build}/fd2pragma/fd2pragma', '{prefix}/bin')
|
||||
|
||||
|
||||
@recipe('tools-install')
|
||||
def install_tools():
|
||||
info('installing extra tools')
|
||||
@ -355,6 +362,10 @@ def build():
|
||||
make('fd2sfd')
|
||||
make('fd2sfd', 'install')
|
||||
|
||||
unpack('fd2pragma', work_dir='{build}')
|
||||
make('fd2pragma')
|
||||
install_fd2pragma()
|
||||
|
||||
unpack('sfdc')
|
||||
configure('sfdc', '--prefix={prefix}', copy_source=True)
|
||||
make('sfdc')
|
||||
|
||||
Reference in New Issue
Block a user