Advertisement
theguild42

ocenaudio-3.11.15.ebuild

May 20th, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. # Copyright 2021-2022 Gentoo Authors
  2. # Distributed under the terms of the GNU General Public License v2
  3.  
  4. EAPI=7
  5.  
  6. inherit xdg-utils
  7.  
  8. DESCRIPTION="Easy, fast and powerful audio editor"
  9. HOMEPAGE="https://www.ocenaudio.com/"
  10. SRC_URI="https://www.ocenaudio.com/downloads/index.php/${PN}_archlinux.pkg.tar.xz -> ${P}.tar.xz"
  11.  
  12. LICENSE="ocenaudio_license"
  13. SLOT="0"
  14. KEYWORDS="~amd64 ~x86"
  15.  
  16. DEPEND="
  17. app-arch/bzip2
  18. app-arch/xz-utils
  19. dev-libs/libgudev
  20. dev-libs/libxml2
  21. dev-libs/openssl
  22. dev-qt/qtconcurrent
  23. dev-qt/qtcore
  24. dev-qt/qtgui
  25. dev-qt/qtnetwork
  26. dev-qt/qtwidgets
  27. media-libs/alsa-lib
  28. media-sound/pulseaudio
  29. sys-libs/zlib
  30. virtual/jack
  31. "
  32. RDEPEND="${DEPEND}"
  33. BDEPEND=""
  34.  
  35. QA_PREBUILT="*"
  36. S="${WORKDIR}"
  37.  
  38. src_install() {
  39. mv */ "${D}" || die
  40. dosym ../../opt/${PN}/bin/${PN} /usr/bin/${PN}
  41. }
  42.  
  43. pkg_postinst() {
  44. xdg_mimeinfo_database_update
  45. xdg_desktop_database_update
  46. }
  47.  
  48. pkg_postrm() {
  49. xdg_mimeinfo_database_update
  50. xdg_desktop_database_update
  51. }
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement