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.

29 lines
533 B

  1. pkgname=xclipshow
  2. pkgver=1
  3. pkgrel=1
  4. pkgdesc="Show information of current clipboard contents"
  5. url=()
  6. arch=('any')
  7. license=('BSD')
  8. install=''
  9. source=(xclipshow.cpp CMakeLists.txt)
  10. depends=('cmake' 'qt5-base')
  11. optdepends=()
  12. conflicts=()
  13. #provides=''
  14. makedepends=()
  15. build() {
  16. cd $srcdir
  17. mkdir build
  18. cd ./build
  19. cmake $srcdir
  20. make
  21. }
  22. package() {
  23. mkdir -p $pkgdir/usr/bin/
  24. install -Dm 755 $srcdir/build/xclipshow $pkgdir/usr/bin/
  25. }
  26. md5sums=('e445f888db036c7a1dfc7d33294c84f9'
  27. '947756f823b5c82ad3626f46e38c549e')