Skip to content

Commit

Permalink
Fixed|Builder|FMOD: Debian packaging rules for the FMOD plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 24, 2015
1 parent bb15b38 commit ef81fe4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion distrib/autobuild.py
Expand Up @@ -155,7 +155,7 @@ def update_changes(debChanges=False):
# Also update the doomsday-fmod changelog (just version number).
os.chdir(os.path.join(builder.config.DISTRIB_DIR, 'dsfmod'))

fmodVer = build_version.parse_header_for_version('../../doomsday/plugins/fmod/include/version.h')
fmodVer = build_version.parse_cmake_for_version('../../doomsday/cmake/Version.cmake')
debVer = "%s.%s.%s-%s" % (fmodVer[0], fmodVer[1], fmodVer[2], todays_build_tag())
print "Marking new FMOD version:", debVer
msg = 'New release: Doomsday Engine build %i.' % builder.Event().number()
Expand Down
4 changes: 2 additions & 2 deletions distrib/dsfmod/debian/rules
Expand Up @@ -4,7 +4,7 @@ builddir:
mkdir -p builddir

builddir/Makefile: builddir
cd builddir && qmake-qt4 PREFIX=/usr CONFIG+=release DENG_BUILD=`../../build_number.py --print` ../../../doomsday/plugins/fmod/fmod.pro
cd builddir && cmake -DCMAKE_BUILD_TYPE=Release -DDENG_BUILD=`../../build_number.py --print` ../../../doomsday/apps/plugins/fmod

build: build-stamp

Expand All @@ -28,7 +28,7 @@ install: build
dh_installdirs

# Add here commands to install the package into debian/your_appname
cd builddir && $(MAKE) INSTALL_ROOT=$(CURDIR)/debian/$(APPNAME) install
cd builddir && $(MAKE) DESTDIR=$(CURDIR)/debian/$(APPNAME) install

# Build architecture-independent files here.
binary-indep: build install
Expand Down

0 comments on commit ef81fe4

Please sign in to comment.