Guest User

Untitled

a guest
Dec 30th, 2023
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. # Maintainer: twa022 <twa022 at gmail dot com>
  2.  
  3. _pkgname=thunar
  4. pkgname=${_pkgname}-devel
  5. pkgver=4.19.2
  6. pkgrel=1
  7. pkgdesc='File manager for Xfce (development version)'
  8. arch=('i686' 'x86_64' 'armv7h' 'aarch64')
  9. license=('GPL')
  10. groups=('xfce4-devel')
  11. url='https://thunar.xfce.org'
  12. depends=('desktop-file-utils' 'exo>=4.19.0' 'gtk3' 'hicolor-icon-theme' 'libgudev'
  13. 'libexif' 'libnotify' 'libpng' 'libxfce4ui' 'libxfce4util')
  14. makedepends=('xfce4-panel' 'gtk-doc' 'gobject-introspection')
  15. optdepends=('gvfs: trash support, mounting with udisks, and remote filesystems'
  16. 'xfce4-panel: trash applet'
  17. 'tumbler: for thumbnail previews'
  18. 'thunar-volman: manages removable devices'
  19. 'thunar-archive-plugin: create and deflate archives'
  20. 'thunar-media-tags-plugin: view/edit id3/ogg tags'
  21. 'catfish: file search')
  22. provides=("${_pkgname}=${pkgver}")
  23. conflicts=("${_pkgname}")
  24. source=("https://archive.xfce.org/src/xfce/${_pkgname}/${pkgver%.*}/${_pkgname}-${pkgver}.tar.bz2")
  25. sha256sums=('7bb51a8be908850bf9c199b6290997aaae1d9da3dc03245972240b058a4a63c3')
  26.  
  27. build() {
  28. cd "${_pkgname}-${pkgver}"
  29. ./configure \
  30. --prefix=/usr \
  31. --sysconfdir=/etc \
  32. --libexecdir=/usr/lib \
  33. --localstatedir=/var \
  34. --disable-static \
  35. --enable-gio-unix \
  36. --enable-gudev \
  37. --enable-exif \
  38. --enable-pcre \
  39. --enable-gtk-doc \
  40. --disable-debug
  41. make
  42. }
  43.  
  44. package() {
  45. cd "${_pkgname}-${pkgver}"
  46. make DESTDIR="${pkgdir}" install
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment