37 lines
659 B
Bash
37 lines
659 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop unpacker xdg
|
|
|
|
DESCRIPTION="The one-and-only remote for your computer."
|
|
|
|
HOMEPAGE="https://www.unifiedremote.com/"
|
|
SRC_URI="urserver.deb"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE=""
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64"
|
|
IUSE=""
|
|
|
|
RESTRICT="strip mirror bindist fetch"
|
|
|
|
DEPEND="
|
|
"
|
|
|
|
src_unpack() {
|
|
# /bin/sh "${DISTDIR}/${A}" --nox11 --keep --target "${S}/unpack_app" -- "-help" || die
|
|
unpack_deb "${SRC_URI}"
|
|
}
|
|
|
|
src_install() {
|
|
die
|
|
}
|
|
|
|
pkg_nofetch() {
|
|
einfo "Please place the unified remote installation file ${SRC_URI}"
|
|
einfo "in your \$\{DISTDIR\}."
|
|
}
|