[BACK]Return to openxm-shared.spec.in CVS log [TXT][DIR] Up to [local] / OpenXM / misc / packages / Linux / RPM

File: [local] / OpenXM / misc / packages / Linux / RPM / openxm-shared.spec.in (download)

Revision 1.7, Sat Sep 2 02:45:02 2000 UTC (23 years, 8 months ago) by takayama
Branch: MAIN
CVS Tags: maekawa-ipv6, R_1_3_1-2, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, RELEASE_1_1_3, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9
Changes since 1.6: +2 -2 lines

Correction of typos.

# $OpenXM: OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in,v 1.7 2000/09/02 02:45:02 takayama Exp $
#  openxm-shared.spec.in
#
%define ver      1.1.3
%define prefix   /usr/local
%define work     /var/tmp

Summary:   The OpenXM package is a collection of mathematical software systems integrated by the OpenXM protocol. This package contains architecture independent part of it.
Name:      openxm-shared
Version:   %ver
Release:   test  
Copyright: See OpenXM/Copyright
Group:     Mathematical Software
Source:    ftp://ftp.math.sci.kobe-u.ac.jp/pub/OpenXM/openxm-1.1.3.tar.gz
URL:       http://www.openxm.org
BuildRoot:  %{work}/%{name}-root
## BuildRoot should be removed in the real package building.


%description
The OpenXM package is a collection of mathematical software systems that
support the OpenXM protocol.
Main clients are asir and mathematica (math).
Servers are ox_asir, ox_sm1, ox_gnuplot, ox_math, ox_phc, ox_tigers.
[Note on installation]
This package is not relocatable as it is. But if you change directory
to OpenXM/rc after the installation and type in
make clean ; make install PREFIX=(Your favorite directory to put shell scripts to start OpenXM clients)
then everything works fine.
%prep
%setup -n openxm-%{ver}

%build
make configure
make

%install
/bin/rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM
make install-shared-files PREFIX=$RPM_BUILD_ROOT%{prefix}
make install-man-pages-for-rpm PREFIX=$RPM_BUILD_ROOT%{prefix}

%clean
rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM
rm -rf $RPM_BUILD_ROOT%{prefix}/bin/asir
rm -rf $RPM_BUILD_ROOT%{prefix}/bin/sm1
rm -rf $RPM_BUILD_ROOT%{prefix}/bin/oxmath
rm -rf $RPM_BUILD_ROOT%{prefix}/bin/oxMathematica
rm -rf $RPM_BUILD_ROOT%{prefix}/bin/openxm
rm -rf $RPM_BUILD_ROOT%{prefix}/bin/oxgp

%files
%defattr(-, root, root)
%{prefix}/OpenXM/lib/asir-contrib/*
%{prefix}/OpenXM/lib/java-support/*
%{prefix}/OpenXM/lib/k097/*
%{prefix}/OpenXM/lib/math/*
%{prefix}/OpenXM/lib/pari/*
%{prefix}/OpenXM/lib/sm1/*
%{prefix}/OpenXM/lib/asir/*
%{prefix}/OpenXM/man/*
%{prefix}/OpenXM/include/*
%{prefix}/OpenXM/Copyright/*
%{prefix}/man/man1/openxm.1
%{prefix}/man/man1/sm1.1
%doc  %{prefix}/OpenXM/doc/*
## %config %{prefix}/OpenXM/lib/asir/asir_key

%post
if [ -f /var/tmp/asir_key.save ] ; then
	cp -f /var/tmp/asir_key.save %{prefix}/OpenXM/lib/asir/asir_key ;
fi

%preun
if [ -f %{prefix}/OpenXM/lib/asir/asir_key ] ; then
	cp -f %{prefix}/OpenXM/lib/asir/asir_key /var/tmp/asir_key.save ;
fi