mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
af8e2020da
dh_strip -Xqfcc causes qfcc itself to not get stripped -- explicitly disallow stripping of only lib/qfcc Also, disable Werror in debian builds and make sure quakeforge-stub looks in the same place the engine will.
11 lines
255 B
Bash
11 lines
255 B
Bash
#!/bin/sh -e
|
|
|
|
if test ! -f /usr/share/games/quake/id1/pak0.pak; then
|
|
echo "Warning: /usr/share/games/quake/id1/pak0.pak not found."
|
|
echo "Install either the shareware or registered quake data into"
|
|
echo "/usr/share/games/quake"
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|