forked from pool/lhasa
Jan Engelhardt
be353098e0
OBS-URL: https://build.opensuse.org/package/show/Archiving/lhasa?expand=0&rev=21
86 lines
2.3 KiB
RPMSpec
86 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package lhasa
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: lhasa
|
|
%define lname liblhasa0
|
|
Version: 0.4.0
|
|
Release: 0
|
|
Summary: Program to unpack LHARC archives
|
|
License: ISC
|
|
Group: Productivity/Archiving/Compression
|
|
URL: http://fragglet.github.com/lhasa/
|
|
|
|
#Git-Clone: git://github.com/fragglet/lhasa
|
|
Source: http://www.soulsphere.org/projects/lhasa/lhasa-%version.tar.gz
|
|
Source2: http://www.soulsphere.org/projects/lhasa/lhasa-%version.tar.gz.asc
|
|
Source3: %name.keyring
|
|
BuildRequires: pkg-config
|
|
BuildRequires: xz
|
|
|
|
%description
|
|
Lhasa is a replacement for the Unix LHA tool, for decompressing
|
|
".lzh" (LHA/LHarc) and ".lzs" (LArc) archives.
|
|
|
|
%package -n %lname
|
|
Summary: A decompression library for the LHARC data format
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
liblhasa is the backend to the Lhasa tool, offering decompressing for
|
|
".lzh" (LHA/LHarc) and ".lzs" (LArc) archives.
|
|
|
|
%package devel
|
|
Summary: Development files for liblhasa, a LHARC decompression library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
|
|
%description devel
|
|
liblhasa is the backend to the Lhasa tool, offering decompressing for
|
|
".lzh" (LHA/LHarc) and ".lzs" (LArc) archives.
|
|
|
|
This package contains the development headers for the library found
|
|
in %lname.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%configure --disable-static
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
rm -f "%buildroot/%_libdir"/*.la
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files
|
|
%_bindir/lha
|
|
%_mandir/man1/lha.1*
|
|
|
|
%files -n %lname
|
|
%_libdir/liblhasa.so.0*
|
|
|
|
%files devel
|
|
%_includedir/liblhasa-1.0
|
|
%_libdir/liblhasa.so
|
|
%_libdir/pkgconfig/liblhasa.pc
|
|
|
|
%changelog
|