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.

28 lines
530 B

  1. # Maintainer: Pekka Helenius <fincer89 [at] hotmail [dot] com>
  2. pkgname=xclipshow
  3. pkgver=1
  4. pkgrel=1
  5. pkgdesc="Show information of current clipboard contents"
  6. arch=('any')
  7. license=('custom')
  8. source=(
  9. 'xclipshow.cpp'
  10. 'CMakeLists.txt'
  11. )
  12. md5sums=('e445f888db036c7a1dfc7d33294c84f9'
  13. '947756f823b5c82ad3626f46e38c549e')
  14. depends=('cmake' 'qt5-base')
  15. build() {
  16. mkdir -p $srcdir/build
  17. cd build
  18. cmake $srcdir
  19. make
  20. }
  21. package() {
  22. mkdir -p $pkgdir/usr/bin/
  23. install -Dm 755 $srcdir/build/xclipshow $pkgdir/usr/bin/
  24. }