media-tv/satdump: add 1.0.3 version

satdump
root 1 year ago
parent 7dac1a7a69
commit 7909c3ff4a

@ -0,0 +1 @@
DIST satdump-1.0.3.tar.gz 14837195 BLAKE2B 99b1562ff69410f50aa3efee08f77ef0d44f183c76ac8066c19d94668b9d85495979d1a1ddccb92be0b34e9ced2ab283821ae69318e83543ac5b53a4bd3472a3 SHA512 035a364c4ca48b3f0f2e2607529bf532745420201535e4ec33b37836cb403f5da6a7435c182c5a0a41673c497c3d58194f63cd7db1491dbaf31542badbf10ece

@ -0,0 +1,19 @@
diff --git a/src-core/CMakeLists.txt b/src-core/CMakeLists.txt
index 9c8ecb5a..fc68f6e3
--- a/src-core/CMakeLists.txt
+++ b/src-core/CMakeLists.txt
@@ -4,6 +4,7 @@
include(CheckCSourceCompiles)
include(CMakePushCheckState)
include(CheckCCompilerFlag)
+include(GNUInstallDirs)
file(GLOB_RECURSE SatDump_core_CPPS *.cpp
libs/aec/*.c
@@ -194,6 +195,6 @@
endif()
endif()
-install(TARGETS satdump_core DESTINATION lib)
+install(TARGETS satdump_core DESTINATION ${LIBDIR})
install(DIRECTORY . DESTINATION include/satdump FILES_MATCHING PATTERN "*.h")

@ -0,0 +1,33 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Generic satellite data processing software"
HOMEPAGE="https://www.satdump.org
https://github.com/SatDump/SatDump"
SRC_URI="https://github.com/SatDump/SatDump/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="app-arch/zstd
media-libs/libpng
sci-libs/fftw
sci-libs/volk
sys-libs/zlib"
RDEPEND="${DEPEND}"
BDEPEND=""
PATCHES=( "${FILESDIR}/${P}-fix-gnudirs.patch" )
S="${WORKDIR}/SatDump-${PV}"
src_configure() {
local mycmakeargs=( -DBUILD_GUI=OFF )
cmake_src_configure
}
Loading…
Cancel
Save