blob: 9a8b15a334e0f3093fc04aa8db05738374f96622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
%define ver 0.01
%define rel 1
%define name gtkdbi
%define rlname %{name}
%define source0 http://www.420.am/gtkdbi/%{name}-%{ver}.tar.gz
%define url http://www.420.am/gtkdbi/
%define group Application
%define copy GPL or Artistic
%define filelst %{name}-%{ver}-files
%define confdir /etc
%define prefix /usr
%define arch noarch
Summary: No description
Name: %name
Version: %ver
Release: %rel
Copyright: %{copy}
Packager: Ivan Kohler <ivan-gtkdbi\@420.am>
Source: %{source0}
URL: %{url}
Group: %{group}
BuildArch: %{arch}
BuildRoot: /var/tmp/%{name}-%{ver}
%description
No description
%prep
%setup -n %{rlname}-%{ver}
%build
if [ $(perl -e 'print index($INC[0],"%{prefix}/lib/perl");') -eq 0 ];then
# package is to be installed in perl root
inst_method="makemaker-root"
CFLAGS=$RPM_OPT_FLAGS perl Makefile.PL PREFIX=%{prefix}
else
# package must go somewhere else (eg. /opt), so leave off the perl
# versioning to ease integration with automatic profile generation scripts
# if this is really a perl-version dependant package you should not omiss
# the version info...
inst_method="makemaker-site"
CFLAGS=$RPM_OPT_FLAGS perl Makefile.PL PREFIX=%{prefix} LIB=%{prefix}/lib/perl5
fi
echo $inst_method > inst_method
# get number of processors for parallel builds on SMP systems
numprocs=`cat /proc/cpuinfo | grep processor | wc | cut -c7`
if [ "x$numprocs" = "x" -o "x$numprocs" = "x0" ]; then
numprocs=1
fi
make "MAKE=make -j$numprocs"
%install
rm -rf $RPM_BUILD_ROOT
if [ "$(cat inst_method)" = "makemaker-root" ];then
make UNINST=1 PREFIX=$RPM_BUILD_ROOT%{prefix} install
elif [ "$(cat inst_method)" = "makemaker-site" ];then
make UNINST=1 PREFIX=$RPM_BUILD_ROOT%{prefix} LIB=$RPM_BUILD_ROOT%{prefix}/lib/perl5 install
fi
%__os_install_post
find $RPM_BUILD_ROOT -type f -print|sed -e "s@^$RPM_BUILD_ROOT@@g" > %{filelst}
%files -f %{filelst}
%defattr(-, root, root)
%doc Documentation/*
%clean
rm -rf $RPM_BUILD_ROOT
%changelog
* Tue Oct 23 2001 - Ivan Kohler <ivan-gtkdbi\@420.am>
This file was created by Glade::PerlSource
|