mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-15 05:45:12 +01:00
14 lines
453 B
Plaintext
14 lines
453 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
# -*- makefile -*-
|
||
|
|
||
|
export DH_VERBOSE=1
|
||
|
|
||
|
%:
|
||
|
dh $@
|
||
|
|
||
|
override_dh_auto_install:
|
||
|
mkdir -p $(CURDIR)/debian/libruntimeiospatch/opt/devkitpro/libogc/lib/wii
|
||
|
mkdir -p $(CURDIR)/debian/libruntimeiospatch/opt/devkitpro/libogc/include
|
||
|
cp $(CURDIR)/libruntimeiospatch.a $(CURDIR)/debian/libruntimeiospatch/opt/devkitpro/libogc/lib/wii/
|
||
|
cp $(CURDIR)/source/runtimeiospatch.h $(CURDIR)/debian/libruntimeiospatch/opt/devkitpro/libogc/include/
|