129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
%build
%configure --disable-rpath
%make_build
%install
%make_install
%if 0%{?suse_version}
%post -n %{libobjfw_pkgname} -p /sbin/ldconfig
%postun -n %{libobjfw_pkgname} -p /sbin/ldconfig
%post -n %{libobjfwrt_pkgname} -p /sbin/ldconfig
%postun -n %{libobjfwrt_pkgname} -p /sbin/ldconfig
%endif
|
>
>
>
|
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
%build
%configure --disable-rpath
%make_build
%install
%make_install
%check
make -C tests run
%if 0%{?suse_version}
%post -n %{libobjfw_pkgname} -p /sbin/ldconfig
%postun -n %{libobjfw_pkgname} -p /sbin/ldconfig
%post -n %{libobjfwrt_pkgname} -p /sbin/ldconfig
%postun -n %{libobjfwrt_pkgname} -p /sbin/ldconfig
%endif
|