Facebook
From Innocent Finch, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 217
  1. # Maintainer: twa022 <twa022 at gmail dot com>
  2.  
  3. _pkgname=thunar
  4. pkgname=${_pkgname}-devel
  5. pkgver=4.17.11
  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.6' 'libxfce4util>=4.17.2')
  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=('262c33965ffa38053314ae4d6494d9cfae3937e013d9e2dffb371188fa8fcb20')
  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. }