Skip to content

Commit

Permalink
Merge pull request wolfi-dev#22859 from dlorenc/graphicsmagick
Browse files Browse the repository at this point in the history
Add graphicsmagick package.
  • Loading branch information
dlorenc committed Jun 28, 2024
2 parents 693a0bb + 47f3d73 commit 1f85ae0
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions graphicsmagick.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
package:
name: graphicsmagick
version: "1.3.43"
epoch: 0
description: GraphicsMagick Image Processing Syste,
copyright:
- license: MIT

environment:
contents:
packages:
- autoconf
- automake
- build-base
- busybox
- ca-certificates-bundle
- freetype-dev
- libltdl
- libpng-dev
- libtool
- libwebp-dev
- libxml2-dev
- tiff-dev

pipeline:
- uses: fetch
with:
expected-sha256: 2b88580732cd7e409d9e22c6116238bef4ae06fcda11451bf33d259f9cbf399f
uri: https://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/${{package.version}}/GraphicsMagick-${{package.version}}.tar.xz

- uses: autoconf/configure
with:
opts: |
--with-quantum-depth=16 \
--with-gs-font-dir=/usr/share/fonts/Type1 \
--with-ttf \
--with-webp
- uses: autoconf/make

- uses: autoconf/make-install

- uses: strip

subpackages:
- name: graphicsmagick-doc
pipeline:
- uses: split/manpages

- name: graphicsmagick-cpp
pipeline:
- runs: |
mkdir -p ${{targets.subpkgdir}}/usr/lib
mv ${{targets.destdir}}/usr/lib/libGraphicsMagick++.* ${{targets.subpkgdir}}/usr/lib/
- name: graphicsmagick-dev
pipeline:
- uses: split/dev

update:
release-monitor:
identifier: 1248

test:
pipeline:
- runs: |
gm help
gm version | grep ${{package.version}}

0 comments on commit 1f85ae0

Please sign in to comment.