You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.4 KiB
104 lines
3.4 KiB
## |
|
## heise.spec -- OpenPKG RPM Package Specification |
|
## Copyright (c) 2000-2022 OpenPKG Project <http://openpkg.org/> |
|
## |
|
## Permission to use, copy, modify, and distribute this software for |
|
## any purpose with or without fee is hereby granted, provided that |
|
## the above copyright notice and this permission notice appear in all |
|
## copies. |
|
## |
|
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
|
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
|
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR |
|
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
|
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
|
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
## SUCH DAMAGE. |
|
## |
|
|
|
# version variables |
|
%define V_vl 2.2.2 |
|
%define V_vs 222 |
|
|
|
# package information |
|
Name: heise |
|
Summary: Heise Register |
|
URL: http://www.heise.de/ct/ftp/register.shtml |
|
Vendor: Heise Verlag, Andy Spiegl, Jan Starzynski |
|
Packager: OpenPKG Project |
|
Distribution: OpenPKG Community |
|
Class: EVAL |
|
Group: Searching |
|
License: GPL |
|
Version: %{V_vl} |
|
Release: 20110205 |
|
|
|
# list of sources |
|
Source0: ftp://ftp.heise.de/pub/ct/register/regpl%{V_vs}.zip |
|
Source1: rc.heise |
|
Source2: heise.conf |
|
|
|
# build information |
|
BuildPreReq: OpenPKG, openpkg >= 20160101, infozip |
|
PreReq: OpenPKG, openpkg >= 20160101, infozip, perl, curl, shtool |
|
|
|
%description |
|
Utility to seach in the index of the german magazine publisher Heise. |
|
|
|
%track |
|
prog heise = { |
|
version = %{V_vs} |
|
url = ftp://ftp.heise.de/pub/ct/register/ |
|
regex = regpl(__VER__)\.zip |
|
} |
|
|
|
%prep |
|
%setup -T -c |
|
%{l_prefix}/bin/unzip -x %{SOURCE regpl%{V_vs}.zip} |
|
|
|
%build |
|
( echo "#!%{l_prefix}/bin/perl" |
|
sed \ |
|
-e '1,15d' \ |
|
-e "s;~/heise/inhalt.frm;%{l_prefix}/var/heise/inhalt.frm;" \ |
|
-e "s;^\(\$frmfilefmt = \).*$;\1\"%{l_prefix}/etc/heise/heise.conf\"\;;" \ |
|
<reg.pl |
|
) >heise |
|
|
|
%install |
|
%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/bin |
|
%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/etc/heise |
|
%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d |
|
%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/var/heise |
|
%{l_shtool} install -c -m 755 \ |
|
heise \ |
|
$RPM_BUILD_ROOT%{l_prefix}/bin/ |
|
%{l_shtool} install -c -m 644 \ |
|
%{SOURCE heise.conf} \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/heise/ |
|
%{l_shtool} install -c -m 755 %{l_value -s -a} \ |
|
%{SOURCE rc.heise} \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/ |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ |
|
%{l_files_std} \ |
|
'%config %{l_prefix}/etc/heise/heise.conf' |
|
|
|
%files -f files |
|
|
|
%clean |
|
|
|
%post |
|
if [ "$1" -eq 1 ]; then |
|
$RPM_INSTALL_PREFIX/etc/rc.d/rc.heise weekly || true |
|
fi |
|
|
|
%preun |
|
if [ "$1" -eq 0 ]; then |
|
rm -rf $RPM_INSTALL_PREFIX/var/heise/* 2>/dev/null || true |
|
fi |
|
|
|
|