Advertisement
Guest User

[CMYKTOOL] By SpepS

a guest
Dec 5th, 2010
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # Maintainer: farid <farid@archlinux-br.org>
  2. # Contributor: SpepS <dreamspepser at yahoo dot it>
  3.  
  4. pkgname=cmyktool
  5. pkgver=0.1.5_rc1
  6. _pkgver=${pkgver/_/-}
  7. pkgrel=1
  8. pkgdesc="Utility intended to build on the functionality of my old CMYK separation plugin for the GIMP."
  9. arch=('i686' 'x86_64')
  10. url="http://www.blackfiveimaging.co.uk/index.php?article=02Software%2F05CMYKTool"
  11. license=('GPL')
  12. depends=('hicolor-icon-theme' 'lcms' 'gtk2' 'netpbm')
  13. makedepends=('gawk')
  14. install="cmyktool.install"
  15. source=(http://www.blackfiveimaging.co.uk/cmyktool/${pkgname}-${_pkgver}.tar.gz)
  16. md5sums=('4d7755df15f3aef48916f30e0d16ea22')
  17.  
  18. build() {
  19. cd "${srcdir}/${pkgname}-${_pkgver}"
  20.  
  21. ./configure --prefix=/usr
  22. make
  23. }
  24.  
  25. package() {
  26. cd "${srcdir}/${pkgname}-${_pkgver}"
  27.  
  28. make DESTDIR="${pkgdir}" install
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement