Various compilation scripts & patches for Linux programs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
836 B

  1. # Maintainer: Pekka Helenius <fincer89 [at] hotmail [dot] com>
  2. pkgname=kde-servicemenus-searchactions
  3. pkgver=1
  4. pkgrel=1
  5. pkgdesc="Search strings inside files using Dolphin or Konqueror (KDE5 Dolphin action)"
  6. arch=('any')
  7. license=('GPL')
  8. source=(
  9. 'searchinside.desktop'
  10. 'searchinside.sh'
  11. 'searchinside-casesensitive.sh'
  12. )
  13. md5sums=('97e0476998ae35c034316e07623463b1'
  14. '5466d8b1b6334ea5a7ce9b5e586545af'
  15. 'e78a0246503d95489730ec71bb998a97')
  16. depends=('grep' 'findutils' 'dolphin' 'konsole')
  17. package() {
  18. mkdir -p $pkgdir/usr/share/kservices5/ServiceMenus/
  19. cp $srcdir/{searchinside.desktop,searchinside.sh,searchinside-casesensitive.sh} $pkgdir/usr/share/kservices5/ServiceMenus/
  20. chmod 755 $pkgdir/usr/share/kservices5/ServiceMenus/{searchinside.desktop,searchinside.sh,searchinside-casesensitive.sh}
  21. }