mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-17 17:33:30 +02:00
10 lines
198 B
Awk
10 lines
198 B
Awk
{
|
|
version = $0
|
|
}
|
|
|
|
END {
|
|
printf("#define VERSION \"%s\"\n", version)
|
|
print("#define NO_BUILD_TIMESTAMPS")
|
|
print("#define MPVCOPYRIGHT \"Copyright © 2000-2020 mpv/MPlayer/mplayer2 projects\"")
|
|
}
|