mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
15 lines
271 B
Makefile
Executable File
15 lines
271 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
ifeq ($(DEB_BUILD_ARCH_OS),kfreebsd)
|
|
./configure --prefix=/usr --datadir=/usr/share/scummvm --enable-release --disable-alsa
|
|
else
|
|
./configure --prefix=/usr --datadir=/usr/share/scummvm --enable-release
|
|
endif
|
|
|
|
|
|
|