ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/zlib.spec
Revision: 1.8
Committed: Tue May 1 10:50:44 2007 UTC (18 years ago) by elmer
Branch: MAIN
CVS Tags: pe20070522a-ports, pe20070519a-ports, pe20070512a-ports, pe20070508a-ports, pe20070507a-ports, pe20070501c-ports, pe20070501b-ports, pe20070501a-ports
Changes since 1.7: +0 -2 lines
Log Message:
Remove gcc-wrapper

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 #
23 eulisse 1.6 #