Compare commits
11 Commits
8ce8fad45c
...
fe719b7b88
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe719b7b88 | ||
|
|
d85d0a92aa | ||
|
|
23b4178953 | ||
|
|
5625ff2c70 | ||
|
|
350f78d4a1 | ||
|
|
b658460a8e | ||
|
|
8d9812455b | ||
|
|
2ec2a03850 | ||
|
|
a69a8b8f51 | ||
|
|
0b3ee11d50 | ||
|
|
af696495e5 |
BIN
deepin-reader-5.9.9.tar.gz
Normal file
BIN
deepin-reader-5.9.9.tar.gz
Normal file
Binary file not shown.
101
deepin-reader.spec
Normal file
101
deepin-reader.spec
Normal file
@ -0,0 +1,101 @@
|
||||
#%%global debug_package %{nil}
|
||||
%define specrelease 6%{?dist}
|
||||
%if 0%{?openeuler}
|
||||
%define specrelease 6
|
||||
%endif
|
||||
|
||||
Name: deepin-reader
|
||||
Version: 5.9.9
|
||||
Release: 7
|
||||
Summary: A simple PDF reader, supporting bookmarks, highlights and annotations
|
||||
License: GPLv3+
|
||||
URL: https://github.com/linuxdeepin/%{name}
|
||||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: cmake
|
||||
BuildRequires: qt5-devel
|
||||
|
||||
BuildRequires: dtkwidget-devel
|
||||
BuildRequires: dtkcore-devel
|
||||
BuildRequires: dtkgui-devel
|
||||
BuildRequires: pkgconfig(ddjvuapi)
|
||||
BuildRequires: pkgconfig(nss)
|
||||
BuildRequires: pkgconfig(libjpeg)
|
||||
BuildRequires: pkgconfig(cairo)
|
||||
BuildRequires: openjpeg2-devel
|
||||
BuildRequires: poppler-qt5-devel
|
||||
BuildRequires: libspectre-devel
|
||||
BuildRequires: kf5-karchive-devel
|
||||
BuildRequires: libtiff-devel
|
||||
BuildRequires: freetype-devel
|
||||
BuildRequires: nspr-devel
|
||||
BuildRequires: fontconfig-devel
|
||||
BuildRequires: lcms2-devel
|
||||
BuildRequires: libX11-devel
|
||||
BuildRequires: qt5-qtbase-private-devel
|
||||
BuildRequires: chrpath
|
||||
BuildRequires: fdupes
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%build
|
||||
# help find (and prefer) qt5 utilities, e.g. qmake, lrelease
|
||||
export PATH=%{_qt5_bindir}:$PATH
|
||||
mkdir build && pushd build
|
||||
%qmake_qt5 ../ DAPP_VERSION=%{version} DEFINES+="VERSION=%{version}"
|
||||
%make_build
|
||||
popd
|
||||
|
||||
%install
|
||||
%make_install -C build INSTALL_ROOT="%buildroot"
|
||||
|
||||
pushd %{buildroot}/usr/lib/%{name}
|
||||
mapfile -t dups <<<"$(fdupes -1 .)"
|
||||
for line in "${dups[@]}"; do
|
||||
realfile="$(echo "${line}" | tr '[:space:]' '\n' | sort -r | head -1)"
|
||||
mapfile -t dupes <<<"$(echo "${line}" | tr '[:space:]' '\n' | sort -r | tail --lines=+2)"
|
||||
for dup in "${dupes[@]}"; do
|
||||
test -z "${dup}" && continue
|
||||
ln -s -f "${realfile}" "${dup}"
|
||||
done
|
||||
done
|
||||
popd
|
||||
|
||||
# remove rpath info
|
||||
for file in $(find %{buildroot}/ -executable -type f -exec file {} ';' | grep "\<ELF\>" | awk -F ':' '{print $1}')
|
||||
do
|
||||
if [ ! -u "$file" ]; then
|
||||
if [ -w "$file" ]; then
|
||||
chrpath -d $file
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# add rpath path in ld.so.conf.d
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d
|
||||
echo "%{_bindir}/%{name}" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
|
||||
echo "/usr/lib/%{name}" >> %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
|
||||
%{_datadir}/%{name}/translations/*.qm
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
# /usr/lib/libdeepin-pdfium.*
|
||||
%{_datadir}/deepin-manual/manual-assets/application/deepin-reader/document-viewer/*
|
||||
/usr/lib/deepin-reader/libdeepin-poppler*
|
||||
%config(noreplace) /etc/ld.so.conf.d/%{name}-%{_arch}.conf
|
||||
|
||||
%changelog
|
||||
* Fri Nov 17 2023 hanshuang <hanshuang@uniontech.com> - 5.9.9-7
|
||||
- modify version info
|
||||
|
||||
* Tue May 30 2023 leeffo <liweiganga@uniontech.com> - 5.9.9-6
|
||||
- fix: fix install warning
|
||||
4
deepin-reader.yaml
Normal file
4
deepin-reader.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
version_control: github
|
||||
src_repo: linuxdeepin/deepin-reader
|
||||
tag_prefix: ^v
|
||||
seperator: .
|
||||
Loading…
x
Reference in New Issue
Block a user