Fix file name case for ephemeris
This commit is contained in:
parent
ef94d6cfca
commit
1cde113bf4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3390
@ -26,7 +26,8 @@ MAINTAINER= ache@FreeBSD.ORG
|
||||
post-extract:
|
||||
cd ${WRKSRC}/..; \
|
||||
for i in ${EPHEM}; do \
|
||||
zcat ${DISTDIR}/$$i.gz > $$i; \
|
||||
zcat ${DISTDIR}/$$i.gz > \
|
||||
`echo $$i | tr '[:lower:]' '[:upper:]'`; \
|
||||
done
|
||||
|
||||
post-patch:
|
||||
@ -43,7 +44,7 @@ do-install:
|
||||
-@mkdir ${PREFIX}/lib/astrolog
|
||||
cd ${WRKSRC}/..; \
|
||||
${INSTALL} -c -m ${SHAREMODE} -o ${SHAREOWN} -g ${SHAREGRP} \
|
||||
${EPHEM} ${PREFIX}/lib/astrolog
|
||||
LRZ5_* CHI_* CPJV_* ${PREFIX}/lib/astrolog
|
||||
cd ${WRKSRC}/..; \
|
||||
if [ -f ${PREFIX}/lib/astrolog/astrolog.dat ] ; then \
|
||||
${INSTALL} -c -m ${SHAREMODE} -o ${SHAREOWN} -g ${SHAREGRP} \
|
||||
|
@ -3,6 +3,6 @@ share/astrolog/helpfile.520
|
||||
share/astrolog/readme.520
|
||||
info/astrolog.info.gz
|
||||
lib/astrolog/astrolog.dat
|
||||
lib/astrolog/lrz5_24
|
||||
lib/astrolog/chi_24
|
||||
lib/astrolog/cpjv_24
|
||||
lib/astrolog/LRZ5_24
|
||||
lib/astrolog/CHI_24
|
||||
lib/astrolog/CPJV_24
|
||||
|
Loading…
Reference in New Issue
Block a user