diff options
author | jstebbins <[email protected]> | 2010-04-12 18:01:01 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-04-12 18:01:01 +0000 |
commit | 788762ec1d905d4783a62de27863ec8ebf66d284 (patch) | |
tree | 4fd54d66f2aa539677971ead01188bc52b31d73c /test/module.rules | |
parent | 1a466338ea91528105f73681f85238be96670b2a (diff) |
LinGui: improved rpm building
Resulting rpms have fewer warnings and no errors according to rpmlint.
No need to pre-build binaries. Just configure and "make pkg.create.rpm"
Standard fedora rpms can be found in:
build/stage/rpm/RPMS and SRPMS
Binary packages are renamed according to handbrake naming convention in:
build/pkg
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3220 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/module.rules')
-rw-r--r-- | test/module.rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/module.rules b/test/module.rules index c51068901..5f41d4d2f 100644 --- a/test/module.rules +++ b/test/module.rules @@ -24,12 +24,17 @@ clean: test.clean ## skip install/uninstall on darwin ifneq ($(BUILD.system),darwin) +test.install-strip: | $(dir $(TEST.install.exe)) + $(CP.exe) $(TEST.exe) $(TEST.install.exe) + $(STRIP.exe) $(TEST.install.exe) + test.install: | $(dir $(TEST.install.exe)) $(CP.exe) $(TEST.exe) $(TEST.install.exe) test.uninstall: $(RM.exe) -f $(TEST.install.exe) +install-strip: test.install-strip install: test.install uninstall: test.uninstall |