parent
75e29bfbe3
commit
f11d2c7c56
18 changed files with 336 additions and 104 deletions
@ -1 +1 @@ |
||||
Marc Wäckerlin (http://marc.waeckerlin.org) <marc@waeckerlin.org> |
||||
Marc Wäckerlin (https://marc.wäckerlin.ch) <marc@waeckerlin.org> |
||||
|
@ -1,11 +1,13 @@ |
||||
## @id $Id$ |
||||
# |
||||
# This file has been added by bootstrap.sh on Wed, 15 July 2015 10:02:57 +0200 |
||||
# This file has been added by bootstrap.sh on Sun, 11 October 2015 13:20:54 +0200 |
||||
# Feel free to change it or even remove and rebuild it, up to your needs |
||||
# |
||||
## 1 2 3 4 5 6 7 8 |
||||
## 45678901234567890123456789012345678901234567890123456789012345678901234567890 |
||||
|
||||
SUBDIRS = doc html cordova |
||||
SUBDIRS = scripts doc html |
||||
|
||||
doc_DATA = AUTHORS NEWS README COPYING INSTALL ChangeLog |
||||
|
||||
MAINTAINERCLEANFILES = makefile.in |
||||
|
@ -0,0 +1,60 @@ |
||||
Summary: @DESCRIPTION@ |
||||
Name: @PACKAGE_NAME@ |
||||
Version: @VERSION@ |
||||
Release: @BUILD_NUMBER@%{?dist} |
||||
License: LGPL |
||||
Group: Applications/... |
||||
Source0: %{name}-%{version}.tar.gz |
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root |
||||
BuildRequires: gnupg, subversion, automake, autoconf, doxygen |
||||
%if 0%{?fedora} != 20 |
||||
BuildRequires: graphviz |
||||
%endif |
||||
%if 0%{?fedora} || 0%{?rhel} || 0%{?rhl} || 0%{?centos} || 0%{?centos_ver} || 0%{?centos_version} |
||||
BuildRequires: pkgconfig, redhat-lsb |
||||
%if ! ( 0%{?centos} || 0%{?centos_ver} || 0%{?centos_version} ) |
||||
BuildRequires: mscgen |
||||
|
||||
%else |
||||
|
||||
%endif |
||||
%else%if 0%{?suse_version} || 0%{?sles_version} |
||||
BuildRequires: pkg-config, lsb-release |
||||
%if 0%{?suse_version} < 1200 || 0%{?sles_version} < 1200 |
||||
|
||||
%else |
||||
|
||||
%endif |
||||
%endif%endif |
||||
|
||||
%description |
||||
@README@ |
||||
|
||||
|
||||
|
||||
%prep |
||||
%setup -q |
||||
./configure --prefix=/usr \ |
||||
--sysconfdir=/etc \ |
||||
--docdir=/usr/share/doc/packages/@PACKAGE_NAME@ \ |
||||
--libdir=/usr/%_lib |
||||
|
||||
%build |
||||
make |
||||
|
||||
%install |
||||
DESTDIR=$RPM_BUILD_ROOT make install |
||||
|
||||
%clean |
||||
rm -rf $RPM_BUILD_ROOT |
||||
|
||||
%files |
||||
%defattr(-,root,root,-) |
||||
/usr/bin/* |
||||
%doc |
||||
/usr/share/* |
||||
|
||||
|
||||
|
||||
%changelog |
||||
|
@ -0,0 +1,11 @@ |
||||
## @id $Id$ |
||||
# |
||||
# This file has been added by bootstrap.sh on Sun, 11 October 2015 12:15:12 +0200 |
||||
# Feel free to change it or even remove and rebuild it, up to your needs |
||||
# |
||||
## 1 2 3 4 5 6 7 8 |
||||
## 45678901234567890123456789012345678901234567890123456789012345678901234567890 |
||||
|
||||
dist_sbin_SCRIPTS = safechat-install.sh |
||||
|
||||
MAINTAINERCLEANFILES = makefile.in |
Loading…
Reference in new issue