Advertisement
Guest User

photo-of-the-day-plasmoid PKGBUILD fix

a guest
Jan 2nd, 2011
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # Contributor: Carl Mueller archlinux at carlm e4ward com
  2. # Contributor: Michael Serpieri contact at pygoscelis dot org
  3.  
  4. pkgname=photo-of-the-day-plasmoid
  5. pkgver=2.1.1
  6. pkgrel=1
  7. pkgdesc="Kdeplasma plasmoid to display photo of the day"
  8. arch=('i686' 'x86_64')
  9. url="http://www.kde-look.org/content/show.php/Photo+of+the+Day?content=104631"
  10. license=('GPL')
  11. depends=('kdebase-workspace')
  12. makedepends=('make' 'cmake' 'automoc4')
  13. install=$pkgname.install
  14. source=(http://www.kde-look.org/CONTENT/content-files/104631-v2.1.1.tar.gz)
  15. md5sums=('2cdf92909254140a532c5b93bc6e6e30')
  16.  
  17. build() {
  18. cd $srcdir/v2.1.1/
  19. mkdir build
  20. cd build
  21. cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` .. || return 1
  22. make || return 1
  23. make DESTDIR=$pkgdir install || return 1
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement