15 lines
242 B
Plaintext
15 lines
242 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
CFLAGS += -Wno-error=format-security
|
||
|
|
||
|
%:
|
||
|
dh $@
|
||
|
|
||
|
override_dh_auto_build:
|
||
|
make -j1
|
||
|
|
||
|
override_dh_auto_install:
|
||
|
make -j1 PREFIX=/usr install DESTDIR=$$(pwd)/debian/galacticdynasty
|
||
|
|
||
|
override_dh_usrlocal:
|
||
|
echo "Ignoring..."
|