mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
17 lines
469 B
Makefile
Executable File
17 lines
469 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- CPPFLAGS=-I/usr/include/luajit-2.0 --with-lua=luajit-5.1
|
|
|
|
override_dh_link:
|
|
dh_link -plove-dev usr/lib/$(DEB_HOST_MULTIARCH)/liblove.so.0.0.0 usr/lib/$(DEB_HOST_MULTIARCH)/liblove.so
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=love-dbg
|
|
|
|
%:
|
|
dh $@ --parallel
|