diff options
author | gesang <gesang@itinerariummentis.org> | 2024-04-30 00:10:57 +0200 |
---|---|---|
committer | gesang <gesang@itinerariummentis.org> | 2024-04-30 00:10:57 +0200 |
commit | a799096cbaa4decfe85f88eba162d8366dc0cb14 (patch) | |
tree | bea5d8dae94d2e6d2b39249a88d19100775c9476 | |
parent | 67694985debc90cf8a0632e8b0985a3625da1060 (diff) |
add ytfzf
-rw-r--r-- | hifi-rs/template | 2 | ||||
-rw-r--r-- | ueberzugpp/template | 2 | ||||
-rw-r--r-- | ytfzf/template | 33 |
3 files changed, 35 insertions, 2 deletions
diff --git a/hifi-rs/template b/hifi-rs/template index 0caa8c5..df170bb 100644 --- a/hifi-rs/template +++ b/hifi-rs/template @@ -12,7 +12,7 @@ archs="x86_64" #make_dirs="/var/log/dir 0755 root root" hostmakedepends="" makedepends="" -depends="gstreamer1" +depends="" short_desc="A terminal-based (tui), high resolution audio player backed by Qobuz" maintainer="gesang <gesang@itinerariummentis.org>" license="GPL-3.0-or-later" diff --git a/ueberzugpp/template b/ueberzugpp/template index 69b4ed9..f83beda 100644 --- a/ueberzugpp/template +++ b/ueberzugpp/template @@ -13,7 +13,7 @@ configure_args="-DCMAKE_BUILD_TYPE=Release" #make_dirs="/var/log/dir 0755 root root" hostmakedepends="cmake pkg-config extra-cmake-modules" makedepends="libvips-devel libsixel-devel openssl-devel tbb-devel chafa-devel xcb-util-image-devel libopencv-devel" -depends="libvips libsixel chafa>=1.6 openssl tbb openblas libopencv" +depends="chafa>=1.6 openssl openblas" short_desc="Drop in replacement for ueberzug written in C++." maintainer="gesang <gesang@itinerariummentis.org>" license="GPL-3.0-or-later" diff --git a/ytfzf/template b/ytfzf/template new file mode 100644 index 0000000..654a1eb --- /dev/null +++ b/ytfzf/template @@ -0,0 +1,33 @@ +# Template file for 'ytfzf' +pkgname=ytfzf +version=2.6.2 +revision=1 +#archs="i686 x86_64" +#build_wrksrc= +build_style=gnu-makefile +#configure_args="" +#make_build_args="" +#make_install_args="" +#conf_files="" +#make_dirs="/var/log/dir 0755 root root" +hostmakedepends="" +makedepends="" +depends="jq curl mpv fzf yt-dlp ueberzugpp" +short_desc="A posix script to find and watch youtube videos from the terminal." +maintainer="gesang <gesang@itinerariummentis.org>" +license="GPL-3.0-or-later" +homepage="https://github.com/pystardust/ytfzf" +#changelog="" +distfiles="https://github.com/pystardust/ytfzf/archive/refs/tags/v${version}.tar.gz" +checksum=73280e4ef4f490400a42bf582b713803c523587b0b30269859eaa6f2693ec9b1 +python_version="3.12.2" + +do_build(){ + return +} + +do_install(){ + make PREFIX=/usr DESTDIR=${DESTDIR} install + make PREFIX=/usr DESTDIR=${DESTDIR} doc + make PREFIX=/usr DESTDIR=${DESTDIR} addons +} |