Advertisement
Guest User

Untitled

a guest
Feb 19th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.01 KB | None | 0 0
  1. # Maintainer: Colin Keenan <colinnkeenan at gmail dot com>
  2.  
  3. # After installing this package (nautilus-data), you can get gnome-search-tool
  4. # for Xfce without nautilus/gnome-desktop.
  5. # Either install gnome-search-tool-no-nautilus from AUR, or use abs as follows:
  6. # sudo abs extra/gnome-search-tool
  7. # mkdir ~/abs
  8. # cp -r /var/abs/extra/gnome-search-tool/ ~/abs
  9. # cd abs/gnome-search-tool
  10. # [edit PKGBUILD and change depends=('nautilus' ...) to depends=('nautilus-data' ...)]
  11. # makepkg -si
  12. # The advantage of gnome-search-tool-no-nautilus is that upgrades will be easier
  13.  
  14. pkgname=nautilus-data
  15. pkgver=3.10.1
  16. pkgrel=3
  17. pkgdesc="Nautilus data files for gnome-search-tool"
  18. url="http://www.ubuntuupdates.org/nautilus-data"
  19. arch=('any')
  20. license=('GPL')
  21. conflicts=('nautilus')
  22. source=(http://security.ubuntu.com/ubuntu/pool/main/n/nautilus/${pkgname}_${pkgver}-0ubuntu4_all.deb)
  23. md5sums=('703895cd42d0b6c735c8aab5d7bfffc9')
  24.  
  25. package() {
  26.   msg2 "Extracting the data.tar.xz"
  27.   tar xvf data.tar.xz -C "$pkgdir"
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement