Skip to content

Commit

Permalink
changes made because of the new build system
Browse files Browse the repository at this point in the history
  • Loading branch information
darealshinji committed Apr 25, 2014
1 parent 7b3ce80 commit 5ce8b27
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 75 deletions.
18 changes: 13 additions & 5 deletions .gitignore
@@ -1,6 +1,14 @@
mp4v2/GNUmakefile.in
mp4v2/aclocal.m4
mp4v2/autoaux/
mp4v2/autom4te.cache/
mp4v2/configure
autoaux/
autom4te.cache/

aclocal.m4
config.h.in
configure
depcomp
GNUmakefile.in
install-sh
Makefile.in
missing

*.in~

22 changes: 17 additions & 5 deletions INSTALL
@@ -1,7 +1,19 @@
To compile mp4fpsmod run "make".
To install into standard prefix (/usr/local) run "make install".
To install somewhere else (i.e. /usr) run "make install DESTDIR=/usr".
1) Type './bootstrap.sh' to create the files needed to build mp4fpsmod.

The make targets can also be called individually. Running "make" or
"make all" is equivalent to "make configure libmp4v2 mp4fpsmod strip".
2) Then type './configure' to create the configuration. A list of
configure options is printed by running 'configure --help'.

3) Then type 'make' to build mp4fpsmod.

3.1) It is recommended to type 'strip mp4fpsmod' after the build
has finished, to strip unneeded symbols from the binary,
which makes it significantly smaller. This step however is
not essential and can safely be ignored.

4) Type 'make install' to install the files you built.


Summary:
./bootstrap.sh
./configure && make && strip mp4fpsmod
make install
60 changes: 0 additions & 60 deletions Makefile

This file was deleted.

7 changes: 7 additions & 0 deletions bootstrap.sh
@@ -0,0 +1,7 @@
#! /bin/sh -e

echo "Running autoreconf..."
autoreconf -ivf "$@"

echo "Now run './configure' and then 'make' to build mp4fpsmod"

13 changes: 9 additions & 4 deletions debian/copyright
Expand Up @@ -5,7 +5,7 @@ Source: https://github.com/nu774/mp4fpsmod


Files: *
Copyright: public-domain
Copyright: none
License: public-domain

Files: mp4v2/*
Expand Down Expand Up @@ -40,10 +40,15 @@ License: BSD-4-clause


License: public-domain
These files are given to the public domain.
THIS SOFTWARE IS NOT COPYRIGHTED
.
You can use and modify them freely, also without credit, although the authors
would appreciate some.
This source code is offered for use in the public domain. You may
use, modify or distribute it freely.
.
This code is distributed in the hope that it will be useful but
WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
DISCLAIMED. This includes but is not limited to warranties of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


License: MIT
Expand Down
1 change: 1 addition & 0 deletions debian/docs
@@ -0,0 +1 @@
README.rst
1 change: 1 addition & 0 deletions debian/manpages
@@ -0,0 +1 @@
man/mp4fpsmod.1
1 change: 0 additions & 1 deletion debian/mp4fpsmod.install

This file was deleted.

0 comments on commit 5ce8b27

Please sign in to comment.