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