1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2026-04-28 17:55:16 +00:00

Add Chum metadata

This commit is contained in:
Andrea Scarpino 2026-04-28 18:08:18 +02:00
parent 3243b5abc0
commit 00baa89aa2
6 changed files with 101 additions and 68 deletions

3
.gitignore vendored
View file

@ -1,6 +1,3 @@
# Spec files are generated from the yaml files, so they are unneeded
rpm/*.spec
# Build folders # Build folders
build/ build/
build-*/ build-*/

3
.gitmodules vendored
View file

@ -4,3 +4,6 @@
[submodule "3rdparty/doxygen-awesome-css"] [submodule "3rdparty/doxygen-awesome-css"]
path = 3rdparty/doxygen-awesome-css path = 3rdparty/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git url = https://github.com/jothepro/doxygen-awesome-css.git
[submodule "sailfish/lib/blurhash-qt"]
path = sailfish/lib/blurhash-qt
url = https://github.com/HenkKalkwater/BlurhashQt.git

89
rpm/harbour-sailfin.spec Normal file
View file

@ -0,0 +1,89 @@
Name: harbour-sailfin
# >> macros
# << macros
%define __provides_exclude_from ^%{_datadir}/.*$
%define __requires_exclude ^libJellyfinQt.*$
%define _unpackaged_files_terminate_build 0
Summary: Sailfin
Version: 0.5.0
Release: 1
Group: Qt/Qt
License: LGPL-2.1-or-later
URL: https://chris.netsoj.nl/projects/harbour-sailfin
Source0: %{name}-%{version}.tar.bz2
Requires: sailfishsilica-qt5 >= 0.10.9
Requires: qt5-qtdeclarative-import-xmllistmodel
BuildRequires: pkgconfig(sailfishapp) >= 1.0.2
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Qml)
BuildRequires: pkgconfig(Qt5Quick)
BuildRequires: pkgconfig(Qt5WebSockets)
BuildRequires: pkgconfig(Qt5Multimedia)
BuildRequires: pkgconfig(Qt5Concurrent)
BuildRequires: pkgconfig(mlite5)
BuildRequires: git
BuildRequires: desktop-file-utils
BuildRequires: cmake
%description
Play video's and music from your Jellyfin media server on your Sailfish device
%if 0%{?_chum}
Title: Sailfin
Type: desktop-application
DeveloperName: Chris Josten (heartfin)
Categories:
- AudioVideo
Custom:
Repo: https://github.com/heartfin/harbour-sailfin
PackageIcon: https://raw.githubusercontent.com/heartfin/harbour-sailfin/master/sailfish/icons/172x172/harbour-sailfin.png
Links:
Homepage: https://github.com/heartfin/harbour-sailfin
Bugtracker: https://github.com/heartfin/harbour-sailfin/issues
Help: https://github.com/heartfin/harbour-sailfin/discussions
Donation: https://liberapay.com/heartfin
%endif
%prep
%setup -q -n %{name}-%{version}
# >> setup
# << setup
%build
# >> build pre
# << build pre
%cmake . \
-DPLATFORM_SAILFISHOS=1 \
-DSAILFIN_VERSION='%{version}-%{release}'
make %{?_smp_mflags}
# >> build post
# << build post
%install
rm -rf %{buildroot}
# >> install pre
# << install pre
%make_install
# >> install post
# << install post
desktop-file-install --delete-original \
--dir %{buildroot}%{_datadir}/applications \
%{buildroot}%{_datadir}/applications/*.desktop
%files
%defattr(-,root,root,-)
%{_bindir}
%{_datadir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
# >> files
# << files

View file

@ -1,59 +0,0 @@
Name: harbour-sailfin
Summary: Sailfin
Version: 0.5.0
Release: 1
# The contents of the Group field should be one of the groups listed here:
# https://github.com/mer-tools/spectacle/blob/master/data/GROUPS
Group: Qt/Qt
URL: https://chris.netsoj.nl/projects/harbour-sailfin
License: LGPL-2.1-or-later
# This must be generated before uploading a package to a remote build service. Usually this line does not need to be modified.
Sources:
- '%{name}-%{version}.tar.bz2'
Description: |
Play video's and music from your Jellyfin media server on your Sailfish device
Builder: cmake
# This section specifies build dependencies that are resolved using pkgconfig.
# This is the preferred way of specifying build dependencies for your package.
PkgBR:
- git
PkgConfigBR:
- sailfishapp >= 1.0.2
- Qt5Core
- Qt5Qml
- Qt5Quick
- Qt5WebSockets
- mlite5
# Build dependencies without a pkgconfig setup can be listed here
# PkgBR:
# - package-needed-to-build
# Runtime dependencies which are not automatically detected
Requires:
- sailfishsilica-qt5 >= 0.10.9
- qt5-qtdeclarative-import-xmllistmodel
# All installed files
Files:
- '%{_bindir}'
- '%{_datadir}/%{name}'
- '%{_datadir}/applications/%{name}.desktop'
- '%{_datadir}/icons/hicolor/*/apps/%{name}.png'
Macros:
- '__provides_exclude_from; ^%{_datadir}/.*$'
- '__requires_exclude; ^libJellyfinQt.*$'
# Turn off facist build policy
- '_unpackaged_files_terminate_build; 0 '
ConfigOptions:
- -DPLATFORM_SAILFISHOS=1
- -DSAILFIN_VERSION='%{version}-%{release}'
# ExtraInstall: |
# mv /home/deploy/installroot/home/deploy/installroot/usr/share/harbour-sailfin/plugins /home/deploy/installroot/usr/share/harbour-sailfin/plugins
# For more information about yaml and what's supported in Sailfish OS
# build system, please see https://wiki.merproject.org/wiki/Spectacle

View file

@ -1,15 +1,15 @@
project(harbour-sailfin-sailfish) project(harbour-sailfin-sailfish)
# find_library(SAILFISH sailfishapp 1.0 REQUIRED) # find_library(SAILFISH sailfishapp 1.0 REQUIRED)
include(ExternalProject)
# FIXME: don't hardcode /home/deploy/installroot/ # FIXME: don't hardcode /home/deploy/installroot/
set(DEPLOY_ROOT /home/deploy/installroot/) set(DEPLOY_ROOT /home/deploy/installroot/)
ExternalProject_Add(BlurhashQt
# PREFIX ${CMAKE_CURRENT_BINARY_DIR}/lib/blurhash-qt
GIT_REPOSITORY https://github.com/HenkKalkwater/BlurhashQt.git
GIT_TAG 61ae7f0feca6ab67da1bfdbcb222bbd12e8f7e07
CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=ON -DENABLE_EXPORT=OFF -DQML_PLUGIN_PATH=${PROJECT_BINARY_DIR}/plugins/) set(QML_PLUGIN_PATH ${PROJECT_BINARY_DIR}/plugins CACHE PATH "QML plugin path for blurhash-qt")
add_subdirectory(lib/blurhash-qt)
set_target_properties(blurhash-qt PROPERTIES
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/plugins/nl/netsoj/chris/blurhash
RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/plugins/nl/netsoj/chris/blurhash)
find_package(Qt5 COMPONENTS Gui Qml Quick LinguistTools) find_package(Qt5 COMPONENTS Gui Qml Quick LinguistTools)
find_package(SailfishApp 1.0 REQUIRED) find_package(SailfishApp 1.0 REQUIRED)
@ -97,6 +97,8 @@ target_link_libraries(harbour-sailfin PRIVATE Qt5::Gui Qt5::Qml Qt5::Quick Sailf
target_compile_definitions(harbour-sailfin target_compile_definitions(harbour-sailfin
PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>) PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
add_dependencies(harbour-sailfin blurhash-qt)
install(TARGETS harbour-sailfin install(TARGETS harbour-sailfin
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})

@ -0,0 +1 @@
Subproject commit 61ae7f0feca6ab67da1bfdbcb222bbd12e8f7e07