Displaying 4 results from an estimated 4 matches for "__cat".
Did you mean:
3_cat
2004 May 22
1
RPM post-install scripts to update R
...d)
for doc in admin exts FAQ intro lang; do
file=%{_infodir}/R-${doc}.info.gz
if [ -e $file ]; then
/sbin/install-info ${file} %{_infodir}/dir
fi
done
# Update package indices
%{_bindir}/R CMD perl %{_libdir}/R/share/perl/build-help.pl --htmllists
%__cat %{_libdir}/R/library/*/CONTENTS >
%{_libdir}/R/doc/html/search/index.txt
One way to do what you want would be to add something like the following
at the beginning:
%post
cat > /tmp/RPM_postinstall.R << EOF
update.packages(ask=F)
install.packages(c("Design"...
2003 May 05
1
dovecot.spec
hi,
I'm just recoginze that dovecot contains an rpm spec file. unfortunately
it's not too useful since an
rpm -ta dovecot-.x.y.tar.gz
can't be used since just the dovecot.spec.in is in the tarbar and not
the actual spec file (which is in this from not useful in the above
form). anyway here is my patch to the spec.in.
--
Levente "Si vis pacem
2014 Aug 19
0
failure building memcached rpm
...c in nature, but intended for use in speeding up dynamic web
applications by alleviating database load.
%package devel
Group: Development/Tools
Summary: Header files for memcached
%description devel
Install this package if you want to develop programs that link against
memcached.
%prep
%setup
%{__cat} <<EOF >memcached.sysconfig
PORT="11211"
USER="nobody"
MAXCONN="1024"
CACHESIZE="64"
OPTIONS=""
EOF
%build
%configure \
--program-prefix="%{?_program_prefix}" \
--disable-dependency-tracking \
--enable-sas...
2007 Sep 12
0
Re: [CentOS-devel] Areca RAID drivers
...%{buildroot}
%define dkms_name arcmsr
%define dkms_vers %{version}-%{release}
%define quiet -q
# Kernel module sources install for dkms
%{__mkdir_p} %{buildroot}%{_usrsrc}/%{dkms_name}-%{dkms_vers}/
%{__cp} -a arcmsr/* %{buildroot}%{_usrsrc}/%{dkms_name}-%{dkms_vers}/
# Configuration for dkms
%{__cat} > %{buildroot}%{_usrsrc}/%{dkms_name}-%{dkms_vers}/dkms.conf << 'EOF'
PACKAGE_NAME=%{dkms_name}
PACKAGE_VERSION=%{dkms_vers}
BUILT_MODULE_NAME[0]=%{dkms_name}
DEST_MODULE_LOCATION[0]=/weak_updates
AUTOINSTALL="YES"
EOF
%clean
%{__rm} -rf %{buildroot}
%post
# Add to D...