source: dass-tools/dass-tools.spec@ 1212

Last change on this file since 1212 was 1212, checked in by joergs, on Apr 13, 2016 at 3:14:55 PM

build fix

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#
2# Copyright (c) 2012-2016 dass IT GmbH, Koeln, Germany.
3# This file and all modifications and additions to the pristine
4# package are under the same license as the package itself.
5#
6# $Id: dass-tools.spec 1212 2016-04-13 13:14:55Z joergs $
7
8Name: dass-tools
9URL: http://trac.dass-it.de/pub/
10License: GPL
11Group: Productivity/Other
12Autoreqprov: on
13Summary: small set of tools
14Version: 1.0
15Release: 0
16Source: %{name}_%{version}.orig.tar.gz
17BuildRoot: %{_tmppath}/%{name}-%{version}-build
18BuildArch: noarch
19%if 0%{?suse_version}
20BuildRequires: gzip pam-modules tar
21%endif
22# mirror-urls
23Requires: lftp
24# mirror-obs
25Requires: rsync
26# mirror-*
27Requires: sed
28# xpi-extract.sh
29Requires: unzip xmlstarlet
30
31
32%description
33dass-tools is a collections of small utilities
34
35%prep
36%setup -c
37
38%build
39
40
41%install
42mkdir -p $RPM_BUILD_ROOT/etc/
43install -m 644 etc/*.conf $RPM_BUILD_ROOT/etc/
44mkdir -p $RPM_BUILD_ROOT/etc/profile.d/
45install -m 644 etc/profile.d/*.sh $RPM_BUILD_ROOT/etc/profile.d/
46
47mkdir -p $RPM_BUILD_ROOT/usr/bin
48install -m 755 usr/bin/*.sh $RPM_BUILD_ROOT/usr/bin
49
50mkdir -p $RPM_BUILD_ROOT/usr/sbin
51install -m 755 usr/sbin/*.sh $RPM_BUILD_ROOT/usr/sbin
52
53
54
55%clean
56[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
57
58
59%files
60%defattr(-,root,root)
61/etc/mirror-*.conf
62/etc/profile.d/*
63/usr/bin/*
64/usr/sbin/*
Note: See TracBrowser for help on using the repository browser.