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.

37 lines
907 B

  1. pkgname=kde-cdemu-manager
  2. pkgver=0.7.2
  3. pkgrel=1
  4. pkgdesc="KDE CDEmu Manager is a simple frontend for CDEmu."
  5. arch=('i686' 'x86_64')
  6. url="https://www.linux-apps.com/p/998461"
  7. license=('GPL')
  8. depends=('qt5-base' 'kconfigwidgets' 'kdbusaddons' 'ki18n' 'knotifications' 'kxmlgui')
  9. depends=('cdemu-daemon>=2.0')
  10. provides=('kde-cdemu-manager')
  11. conflicts=('kde-cdemu-manager')
  12. makedepends=('cmake' 'extra-cmake-modules')
  13. source=(https://dl.opendesktop.org/api/files/download/id/1481242372/kde_cdemu-0.7.2.tar.bz2
  14. minimize-at-startup.patch)
  15. md5sums=('063bc8e39287bc30afe5bf8912dfe2b6'
  16. 'c2219c13a4eb9860d16aa3b1958887e4')
  17. prepare() {
  18. patch -Np1 -i $srcdir/minimize-at-startup.patch
  19. mkdir -p build
  20. }
  21. build() {
  22. cd build
  23. cmake -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix` \
  24. -DCMAKE_BUILD_TYPE=Release \
  25. ../kde_cdemu
  26. make
  27. }
  28. package() {
  29. cd build
  30. make DESTDIR=$pkgdir install
  31. }