3 |
|
Requires: nspr |
4 |
|
|
5 |
|
%build |
6 |
– |
case %cmsplatf in |
7 |
– |
osx*) |
8 |
– |
CC_PLATF="cc -framework Foundation -framework Carbon" |
9 |
– |
;; |
10 |
– |
*) |
11 |
– |
CC_PLATF="cc" |
12 |
– |
;; |
13 |
– |
esac |
14 |
– |
|
6 |
|
export NSPR_INCLUDE_DIR=$NSPR_ROOT/include/nspr |
7 |
|
export NSPR_LIB_DIR=$NSPR_ROOT/lib |
8 |
|
make -C ./mozilla/security/coreconf |
9 |
|
make -C ./mozilla/security/dbm |
10 |
< |
make -C ./mozilla/security/nss CC="$CC_PLATF" |
10 |
> |
case %cmsplatf in |
11 |
> |
osx*) |
12 |
> |
make -C ./mozilla/security/nss CC="gcc -framework Foundation -framework Carbon" |
13 |
> |
;; |
14 |
> |
*) |
15 |
> |
make -C ./mozilla/security/nss |
16 |
> |
;; |
17 |
> |
esac |
18 |
|
|
19 |
|
%install |
20 |
|
case %cmsplatf in |