ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/gdbm.spec
Revision: 1.2
Committed: Tue May 30 19:00:58 2006 UTC (18 years, 11 months ago) by elmer
Branch: MAIN
CVS Tags: nr_baran081_t1, for080_testfixes1, for080_testfixes, for081, for080_amd64, for080, for080p4, for080pre3, 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
Changes since 1.1: +7 -0 lines
Log Message:
Map hardcoded user.group=bin.bin for installs to the users uid.gid for
Darwin (which has no bin.bin).

File Contents

# User Rev Content
1 eulisse 1.1 ### RPM external gdbm 1.8.3
2     Source: http://rm.mirror.garr.it/mirrors/gnuftp/gnu/%{n}/%{n}-%{v}.tar.gz
3    
4 elmer 1.2 %define thisuser %(id -u)
5     %define thisgroup %(id -g)
6    
7 eulisse 1.1 %build
8 elmer 1.2 case $(uname) in
9     Darwin) perl -p -i -e "s|BINOWN = bin|BINOWN = %{thisuser}|g" Makefile.in;
10     perl -p -i -e "s|BINGRP = bin|BINGRP = %{thisgroup}|g" Makefile.in;;
11     esac
12 eulisse 1.1 ./configure --prefix=%{i}
13     make %makeprocesses