This commit addresses following issues:
- Moves package to new source - snapshotting service was deprecated in favor of VideoLAN's GitLab instance. The commit is taken from "stable" branch, also I have added a note about updates for future packagers.
- Uses version string reported by x264 --version. For future reference - it can be determined as "0.<ABI version>.<Number of commits>".
- Disables debug info. This option conflicts with --enable-lto flag and takes preference over it. Look at configure script and our last build log to see the configuration logic and our resulting build config where LTO is not actually used.
- Enables --system-libx264 flag so x264 binary links with shared libx264 library. The default behavior is to build static libx264 and compile it in x264 executable to get portable binary. This reduces the size of the package due to reducing duplication of binary code.