forked from pool/obs-service-recompress
Adrian Schröter
4f7a797ff4
- Move service to github.com/openSUSE/obs-service-recompress - Add _service file to update package from there - Drop local sources and use tarball from source services OBS-URL: https://build.opensuse.org/request/show/205120 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-recompress?expand=0&rev=13
62 lines
1.7 KiB
RPMSpec
62 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package obs-service-recompress
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define service recompress
|
|
|
|
Name: obs-service-%{service}
|
|
Version: 0.2
|
|
Release: 0
|
|
Summary: An OBS source service: Recompress files
|
|
License: GPL-2.0+
|
|
Group: Development/Tools/Building
|
|
Url: https://github.com/openSUSE/obs-service-%{service}
|
|
Source: %{name}-%{version}.tar.gz
|
|
Requires: bzip2
|
|
Requires: gzip
|
|
Requires: xz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This is a source service for openSUSE Build Service.
|
|
|
|
It supports to compress, uncompress or recompress files from or to
|
|
|
|
none : No Compression
|
|
gz : Gzip Compression
|
|
bz2 : Bzip2 Compression
|
|
xz : XZ Compression
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_prefix}/lib/obs/service
|
|
install -m 0755 recompress %{buildroot}%{_prefix}/lib/obs/service
|
|
install -m 0644 recompress.service %{buildroot}%{_prefix}/lib/obs/service
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%dir %{_prefix}/lib/obs
|
|
%{_prefix}/lib/obs/service
|
|
|
|
%changelog
|