Advertisement
Guest User

Untitled

a guest
Sep 11th, 2021
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. # Maintainer: twa022 <twa022 at gmail dot com>
  2.  
  3. _pkgname=thunar
  4. pkgname=${_pkgname}-devel
  5. pkgver=4.17.5
  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.17.0' 'gtk3' 'hicolor-icon-theme' 'libgudev'
  13. 'libexif' 'libnotify' 'libpng' 'libxfce4ui>=4.17.0' 'libxfce4util>=4.17.0')
  14. makedepends=('intltool' 'xfce4-panel' 'gtk-doc' 'gobject-introspection') # 'xfce4-dev-tools')
  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. provides=("${_pkgname}=${pkgver}")
  22. conflicts=("${_pkgname}")
  23. source=("https://archive.xfce.org/src/xfce/${_pkgname}/${pkgver%.*}/${_pkgname}-${pkgver}.tar.bz2")
  24. sha256sums=('5100f27124b63d9f3d2bbcc7e310424ddda1ff5c7b9395211e17ca839079eed1')
  25.  
  26. build() {
  27. cd "${_pkgname}-${pkgver}"
  28. ./configure \
  29. --prefix=/usr \
  30. --sysconfdir=/etc \
  31. --libexecdir=/usr/lib \
  32. --localstatedir=/var \
  33. --disable-static \
  34. --enable-gio-unix \
  35. --enable-gudev \
  36. --enable-exif \
  37. --enable-pcre \
  38. --enable-gtk-doc \
  39. --disable-debug
  40. make
  41. }
  42.  
  43. package() {
  44. cd "${_pkgname}-${pkgver}"
  45. make DESTDIR="$pkgdir" install
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement