ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/zlib.spec
Revision: 1.4
Committed: Mon May 15 17:00:28 2006 UTC (18 years, 11 months ago) by lat
Branch: MAIN
CVS Tags: WEBTOOLS_CONFIG_1_pre2, WEBTOOLS_CONFIG_1_pre1, PR_0_5_4, PR_0_5_0, PR_0_4_21, PRODREQUEST_0_4_0, PR0_3_13, PR0_3_12, PR0-3-11, forPR034, forPR033, forPR032, forPR030, forPR020, forPA011, forPR010, forPA010, af20060928, ProdAgent_pa17, phedex_2_3_series, forLCG_44, forCMSSW_0_8_0_pre2, V00-01-02, V00-01-2, V00-01-01, V00-01-00, V00-00-11, V00-00-10, V00-00-09, V00-00-08, V00-00-07, V00-00-06, V00-00-05
Changes since 1.3: +0 -1 lines
Log Message:
No more need for glibc with system RPM seeding (or a try thereof at least).

File Contents

# User Rev Content
1 argiro 1.1 ### RPM external zlib 1.1.4
2     Source: http://www.gzip.org/%n/%n-%v.tar.bz2
3    
4     %build
5     case $(uname) in
6     Darwin )
7     LDSHARED="gcc -dynamiclib" ./configure --shared --prefix=%i
8     make LIBS='libz.dylib.$(VER)' SHAREDLIB=libz.dylib # FIXME: libz.$(VER).dylib
9     ;;
10    
11     * )
12     ./configure --shared --prefix=%i
13 eulisse 1.2 make %makeprocesses
14 argiro 1.1 ;;
15     esac
16    
17     %install
18     case $(uname) in
19     Darwin ) make install LIBS='libz.dylib.$(VER)' SHAREDLIB=libz.dylib ;;
20     * ) make install ;;
21     esac