23 lines
521 B
Plaintext
23 lines
521 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
RUN_MONO = MONO_PATH=mcs/class/lib/build/ mono/mini/mono
|
||
|
|
||
|
override_dh_auto_test:
|
||
|
# do nothing here
|
||
|
|
||
|
override_dh_auto_configure:
|
||
|
dh_auto_configure -- --prefix=/opt/mono-%SNAPVER% --sysconfdir=/opt/mono-%SNAPVER%/etc
|
||
|
|
||
|
override_dh_auto_build:
|
||
|
dh_auto_build
|
||
|
$(RUN_MONO) mcs/class/lib/build/mcs.exe \
|
||
|
-target:exe \
|
||
|
-out:debian/MonoGetAssemblyName.exe \
|
||
|
debian/MonoGetAssemblyName.cs
|
||
|
|
||
|
override_dh_auto_clean:
|
||
|
dh_auto_clean
|
||
|
rm -f debian/MonoGetAssemblyName.exe
|
||
|
|
||
|
%:
|
||
|
dh $@
|