forked from SynoCommunity/spksrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Radarr: Use .NET core builds (SynoCommunity#4464)
* Use .NET core builds for Radarr * Framework: allow MAINTAINER_URL to be set by a package * Radarr: code review Co-authored-by: Sebastian Schmidt <publicarray@users.noreply.github.com>
- Loading branch information
1 parent
b3ad1ae
commit f0dc885
Showing
13 changed files
with
99 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
include ../../mk/spksrc.archs.mk | ||
|
||
PKG_NAME = libstdc++6 | ||
PKG_VERS = 6.3.0-18+deb9u1 | ||
PKG_EXT = deb | ||
|
||
PKG_ARCH = amd64 | ||
LIB_DIR = x86_64-linux-gnu | ||
ifeq ($(findstring $(ARCH),$(ARMv7_ARCHS)),$(ARCH)) | ||
PKG_ARCH = armhf | ||
LIB_DIR = arm-linux-gnueabihf | ||
else ifeq ($(findstring $(ARCH),$(ARMv8_ARCHS)),$(ARCH)) | ||
PKG_ARCH = arm64 | ||
LIB_DIR = aarch64-linux-gnu | ||
endif | ||
|
||
PKG_DIST_NAME = $(PKG_NAME)_$(PKG_VERS)_$(PKG_ARCH).deb | ||
PKG_DIST_SITE = http://http.us.debian.org/debian/pool/main/g/gcc-6/ | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
HOMEPAGE = https://gcc.gnu.org/ | ||
COMMENT = The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, Go, and D, as well as libraries for these languages (libstdc++,...). GCC was originally written as the compiler for the GNU operating system. The GNU system was developed to be 100% free software, free in the sense that it respects the user\'s freedom. | ||
LICENSE = GNU GPL v3 | ||
|
||
EXTRACT_PATH = $(WORK_DIR)/$(PKG_DIR) | ||
CONFIGURE_TARGET = nop | ||
COMPILE_TARGET = nop | ||
INSTALL_TARGET = libstdc++6_install | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
|
||
.PHONY: libstdc++6_install | ||
libstdc++6_install: | ||
install -m 755 -d $(STAGING_INSTALL_PREFIX)/lib | ||
install -m 644 $(WORK_DIR)/$(PKG_DIR)/usr/lib/$(LIB_DIR)/libstdc++.so.6.0.22 $(STAGING_INSTALL_PREFIX)/lib | ||
ln -s libstdc++.so.6.0.22 $(STAGING_INSTALL_PREFIX)/lib/libstdc++.so.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
lnk:lib/libstdc++.so.6 | ||
lib:lib/libstdc++.so.6.0.22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,42 @@ | ||
include ../../mk/spksrc.archs.mk | ||
|
||
PKG_NAME = Radarr | ||
PKG_VERS = 3.0.1.4259 | ||
PKG_VERS = 3.0.2.4552 | ||
PKG_EXT = tar.gz | ||
PKG_DIST_NAME = $(PKG_NAME).master.$(PKG_VERS).linux.$(PKG_EXT) | ||
|
||
PKG_ARCH = x64 | ||
ifeq ($(findstring $(ARCH),$(ARMv7_ARCHS)),$(ARCH)) | ||
PKG_ARCH = arm | ||
else ifeq ($(findstring $(ARCH),$(ARMv8_ARCHS)),$(ARCH)) | ||
PKG_ARCH = arm64 | ||
endif | ||
|
||
PKG_DIST_NAME = $(PKG_NAME).master.$(PKG_VERS).linux-core-$(PKG_ARCH).$(PKG_EXT) | ||
PKG_DIST_SITE = https://github.com/Radarr/Radarr/releases/download/v$(PKG_VERS) | ||
PKG_DIR = Radarr | ||
|
||
DEPENDS = | ||
|
||
HOMEPAGE = https://radarr.video/ | ||
COMMENT = Radarr is a movie manager like Couchpotato, but based on the Sonarr codebase. It can monitor multiple RSS feeds for new movie releases and will grab, sorts and rename them. It can also be configured to automatically upgrade the quality of files already downloaded if a better quality format becomes available. | ||
COMMENT = Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available. | ||
LICENSE = GNU GPL v3 | ||
|
||
PRE_CHECKSUM_TARGET = radarr_prechecksum | ||
POST_CHECKSUM_TARGET = radarr_postchecksum | ||
CONFIGURE_TARGET = nop | ||
COMPILE_TARGET = nop | ||
INSTALL_TARGET = radarr_install | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
|
||
.PHONY: radarr_prechecksum | ||
radarr_prechecksum: | ||
cp digests_dir/$(PKG_ARCH) digests | ||
|
||
.PHONY: radarr_postchecksum | ||
radarr_postchecksum: | ||
rm digests | ||
|
||
.PHONY: radarr_install | ||
radarr_install: | ||
mkdir -p $(STAGING_INSTALL_PREFIX)/share/$(PKG_DIR) | ||
tar -cf - -C $(WORK_DIR)/$(PKG_DIR) . | tar -xf - -C $(STAGING_INSTALL_PREFIX)/share/$(PKG_DIR) | ||
rm -rf $(WORK_DIR)/$(PKG_DIR)/Radarr.Update | ||
mkdir -p $(STAGING_INSTALL_PREFIX)/share/$(PKG_DIR)/bin | ||
tar -cf - -C $(WORK_DIR)/$(PKG_DIR) . | tar -xf - -C $(STAGING_INSTALL_PREFIX)/share/$(PKG_DIR)/bin |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Radarr.master.3.0.2.4552.linux-core-arm.tar.gz SHA1 4c305bce6bbd20d596ca756b4811497141ef79ad | ||
Radarr.master.3.0.2.4552.linux-core-arm.tar.gz SHA256 e3095e85861fd5b95b279b87cac6e99dbcba870dff5afdefac508b5cf1a96a6e | ||
Radarr.master.3.0.2.4552.linux-core-arm.tar.gz MD5 1be130931c8e3d6edc17e9ead5a80c77 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Radarr.master.3.0.2.4552.linux-core-arm64.tar.gz SHA1 0d7e4342d9178f8b4a0f17098d6a0aaeab35b5ae | ||
Radarr.master.3.0.2.4552.linux-core-arm64.tar.gz SHA256 688cd548846e18d8881493d3a17090c18b1b2022ae3edc0a0139d0864c6f26e0 | ||
Radarr.master.3.0.2.4552.linux-core-arm64.tar.gz MD5 1453e87e974a15c3433f6d349800cf21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Radarr.master.3.0.2.4552.linux-core-x64.tar.gz SHA1 0e8f9025a6beab22ecfee11567dcbc9a2652c8fc | ||
Radarr.master.3.0.2.4552.linux-core-x64.tar.gz SHA256 6d387e679c396642f688fb5e4ada9572814319921ba558ee5e7db44d9b1f82d6 | ||
Radarr.master.3.0.2.4552.linux-core-x64.tar.gz MD5 e8c7ac278631c2ce8f12154fefddd534 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters