1
0

Accepting request 512387 from home:jengelh:branches:M17N:fonts

- Drop author list. Use more safe quoting of shell vars.

OBS-URL: https://build.opensuse.org/request/show/512387
OBS-URL: https://build.opensuse.org/package/show/M17N:fonts/courier-prime-fonts?expand=0&rev=5
This commit is contained in:
Takashi Iwai 2017-07-26 09:17:08 +00:00 committed by Git OBS Bridge
parent 4641c7b739
commit c439b253fa
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Jul 24 23:31:12 UTC 2017 - jengelh@inai.de
- Drop author list. Use more safe quoting of shell vars.
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Sep 18 19:50:19 UTC 2016 - guoyunhebrave@gmail.com Sun Sep 18 19:50:19 UTC 2016 - guoyunhebrave@gmail.com

View File

@ -36,8 +36,6 @@ BuildArch: noarch
Courier Prime is a Courier-like monospace fonts for screenplay (and other use cases). Courier Prime is a Courier-like monospace fonts for screenplay (and other use cases).
It is optimized for 12 point size and matches the metrics of Courier. It is optimized for 12 point size and matches the metrics of Courier.
Designer: Alan Dague-Greene for John August and Quote-Unquote Apps
%prep %prep
%setup -c %setup -c
%setup -T -D -a 1 %setup -T -D -a 1
@ -50,7 +48,7 @@ mv CourierPrimeSans-master/ttf/*.ttf ./
mv ttf/*.ttf ./ mv ttf/*.ttf ./
# Replace spaces in filenames # Replace spaces in filenames
for file in *.ttf; do mv "$file" `echo $file | tr ' ' '_'` ; done for file in *.ttf; do mv "$file" "$(echo "$file" | tr ' ' '_')"; done
# Fix DOS line endings # Fix DOS line endings
sed -i 's/\r//g' LICENSE README sed -i 's/\r//g' LICENSE README