ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/zlib.spec
Revision: 1.5
Committed: Wed Jul 5 14:52:39 2006 UTC (18 years, 9 months ago) by eulisse
Branch: MAIN
Changes since 1.4: +1 -0 lines
Log Message:
Bumping revision to regenerate them.

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
22 eulisse 1.5 #