🔒 Repository is read-only – file editing is disabled.

recipes/gui/imagemagick/PAGBUILD.yaml main

58 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
pkgname: imagemagick
pkgver: '7.1.2.29'
pkgrel: '2'
pkgdesc: 'An image viewing/manipulation program'
url: 'https://www.imagemagick.org/'
arch: x86_64
license:
- custom

depends: []
makedepends:
- freetype
- ghostscript
- lcms2
- libgsf
- libxml2
- 'libjpeg-turbo'
- openexr
- libwmf
- libpng
- librsvg
- libwebp
- djvulibre

source:
- 'https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.2-29.tar.gz'

sha256sums:
- SKIP

build: |
  cd ImageMagick-*
  ./configure --prefix=/usr \
              --enable-static=no \
              --enable-shared \
              --with-webp \
              --with-gslib \
              --with-perl \
              --with-perl-options="INSTALLDIRS=vendor" \
              --with-x \
              --with-frozenpaths=no \
              --with-modules \
              --disable-openmp \
              --enable-hdri \
              --with-wmf \
              --with-gs-font-dir=/usr/share/fonts/Type1 \
              --with-lqr \
              --with-rsvg \
              --enable-opencl \
              --with-openjp2
  make
  make DESTDIR=${PKGDIR} install
  find  ${PKGDIR} -name perllocal.pod -exec rm {} \;

  install -Dt ${PKGDIR}/usr/share/licenses/${pkgname} -m644 LICENSE NOTICE

package: |
  true