wisdomlight

Untitled

Apr 18th, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. :: Synchronising package databases...
  2. core is up to date
  3. extra 1724.2 KiB 5.81 MiB/s 00:00 [--------------------------------------------------------------------] 100%
  4. community 6.6 MiB 12.1 MiB/s 00:01 [--------------------------------------------------------------------] 100%
  5. multilib is up to date
  6. endeavouros is up to date
  7. :: Starting full system upgrade...
  8. there is nothing to do
  9. :: Searching databases for updates...
  10. :: Searching AUR for updates...
  11. -> Flagged Out Of Date AUR Packages: treesheets-git
  12. :: There are 2 providers available for nutty:
  13. :: Repository AUR
  14. 1) nutty 2) nutty-git
  15.  
  16. Enter a number (default=1):
  17. ==> 1
  18. :: Checking for conflicts...
  19. :: Checking for inner conflicts...
  20. [Aur:1] nutty-1.1.1-1
  21.  
  22. :: (1/1) Downloaded PKGBUILD: nutty
  23. 1 nutty (Build Files Exist)
  24. ==> Diffs to show?
  25. ==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
  26. ==> a
  27. diff --git /home/sherabk/.cache/yay/nutty/.gitignore /home/sherabk/.cache/yay/nutty/.gitignore
  28. new file mode 100644
  29. index 0000000..8eab14e
  30. --- /dev/null
  31. +++ /home/sherabk/.cache/yay/nutty/.gitignore
  32. @@ -0,0 +1,6 @@
  33. +/pkg/
  34. +/src/
  35. +/*.tar.gz
  36. +/*.xz
  37. +/*.zst
  38. +/*.swp
  39. diff --git /home/sherabk/.cache/yay/nutty/PKGBUILD /home/sherabk/.cache/yay/nutty/PKGBUILD
  40. new file mode 100644
  41. index 0000000..07cceb2
  42. --- /dev/null
  43. +++ /home/sherabk/.cache/yay/nutty/PKGBUILD
  44. @@ -0,0 +1,40 @@
  45. +# Maintainer: Julien Nicoulaud <julien dot nicoulaud at gmail dot com>
  46. +
  47. +pkgname=nutty
  48. +pkgver=1.1.1
  49. +pkgrel=1
  50. +pkgdesc='A network utility for linux. Monitor the devices on your network and check bandwidth and speed details.'
  51. +arch=('i686' 'x86_64')
  52. +url='https://github.com/babluboy/nutty'
  53. +license=('GPL3')
  54. +depends=('gtk3' 'granite' 'sqlite' 'libxml2' 'libnotify' 'libgee' 'net-tools' 'nethogs' 'nmap' 'traceroute' 'vnstat' 'curl' 'wireless_tools' 'iproute2' 'pciutils')
  55. +makedepends=('vala' 'meson')
  56. +provides=("${pkgname}")
  57. +conflicts=("${pkgname}-git")
  58. +install="${pkgname}.install"
  59. +source=("https://github.com/babluboy/${pkgname}/archive/${pkgver}.tar.gz")
  60. +sha256sums=('b6c9ef1966d1c60480943313f20cd66ee1b5d23ac8d6578f457fb99f0898d9ba')
  61. +
  62. +build() {
  63. + cd "${srcdir}/${pkgname}-${pkgver}"
  64. + make
  65. +}
  66. +
  67. +package() {
  68. + cd "${srcdir}/${pkgname}-${pkgver}"
  69. + install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
  70. +}
  71. +
  72. +
  73. +build() {
  74. + mkdir -p "${srcdir}/${pkgname}-${pkgver}/build"
  75. + cd "${srcdir}/${pkgname}-${pkgver}/build"
  76. + arch-meson
  77. + ninja
  78. +}
  79. +
  80. +package() {
  81. + cd "${srcdir}/${pkgname}-${pkgver}/build"
  82. + DESTDIR=${pkgdir} ninja install
  83. +}
  84. +
  85. diff --git /home/sherabk/.cache/yay/nutty/nutty.install /home/sherabk/.cache/yay/nutty/nutty.install
  86. new file mode 100644
  87. index 0000000..826f632
  88. --- /dev/null
  89. +++ /home/sherabk/.cache/yay/nutty/nutty.install
  90. @@ -0,0 +1,16 @@
  91. +post_install() {
  92. + glib-compile-schemas usr/share/glib-2.0/schemas
  93. + gtk-update-icon-cache -ftq usr/share/icons/hicolor
  94. +}
  95. +
  96. +post_upgrade() {
  97. + glib-compile-schemas usr/share/glib-2.0/schemas
  98. + gtk-update-icon-cache -ftq usr/share/icons/hicolor
  99. +}
  100. +
  101. +post_remove() {
  102. + glib-compile-schemas usr/share/glib-2.0/schemas
  103. + gtk-update-icon-cache -ftq usr/share/icons/hicolor
  104. +}
  105. +
  106. +# vim: ts=2 sw=2 et:
  107. \ No newline at end of file
  108.  
Add Comment
Please, Sign In to add comment