From f43461189fe83ff41e0e0631db303898b9acd4f6 Mon Sep 17 00:00:00 2001 From: Seonah Moon Date: Thu, 27 Feb 2020 16:41:08 +0900 Subject: [PATCH] Add spec file Change-Id: Ie51460031c21c57d4110c7c391f2c379e56bb7a2 --- packaging/libpsl.spec | 60 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 packaging/libpsl.spec diff --git a/packaging/libpsl.spec b/packaging/libpsl.spec new file mode 100644 index 0000000..6f73112 --- /dev/null +++ b/packaging/libpsl.spec @@ -0,0 +1,60 @@ +Name: libpsl +Version: 0.21.0 +Release: 1 +Summary: C library for the Publix Suffix List +License: MIT +URL: https://rockdaboot.github.io/libpsl +Source0: %{name}-%{version}.tar.gz +BuildRequires: libicu-devel +BuildRequires: python + +%description +libpsl is a C library to handle the Public Suffix List. +A Public Suffix List is a collection of Top Level Domains (TLDs) suffixes. + +%package devel +Summary: Development files for %{name} +Requires: %{name} = %{version}-%{release} + +%description devel +This package contains libraries and header files for +developing applications that use %{name}. + +%package -n psl +Summary: Commandline tool + +%description -n psl +This package contains a commandline tool to explore the Public Suffix List, +for example it checks if domains are public suffixes, checks if cookie-domain +is acceptable for domains and so on. + +%prep +%setup -q + +%build +%configure --disable-silent-rules \ + --disable-static \ + --enable-builtin=libicu +make %{?_smp_mflags} + +%install +%make_install + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%license COPYING +%{_libdir}/libpsl.so.* + +%files devel +%doc AUTHORS NEWS +%{_includedir}/libpsl.h +%{_libdir}/libpsl.so +%{_libdir}/pkgconfig/libpsl.pc +%{_datadir}/man/* + +%files -n psl +%license COPYING +%{_bindir}/psl -- 2.34.1