pkgsrc/graphics/jbigkit/Makefile
rillig 9637f7852e all: migrate homepages from http to https
pkglint -r --network --only "migrate"

As a side-effect of migrating the homepages, pkglint also fixed a few
indentations in unrelated lines. These and the new homepages have been
checked manually.
2020-01-26 17:30:40 +00:00

40 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2020/01/26 17:31:21 rillig Exp $
DISTNAME= jbigkit-2.1
CATEGORIES= graphics
MASTER_SITES= http://www.cl.cam.ac.uk/~mgk25/jbigkit/download/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://www.cl.cam.ac.uk/~mgk25/jbigkit/
COMMENT= JBIG-KIT lossless image compression library
LICENSE= gnu-gpl-v2
USE_LIBTOOL= yes
USE_TOOLS+= gmake
TEST_TARGET= test
INSTALLATION_DIRS= bin include lib ${PKGMANDIR}/man1 share/doc/jbig
do-install:
${RUN} cd ${WRKSRC}/libjbig; \
for h in *.h; do \
${INSTALL_DATA} "$${h}" ${DESTDIR}${PREFIX}/include; \
done; \
for l in *.la; do \
${LIBTOOL} --mode=install ${INSTALL_LIB} "$${l}" \
${DESTDIR}${PREFIX}/lib; \
done; \
for t in *.txt; do \
${INSTALL_DATA} "$${t}" ${DESTDIR}${PREFIX}/share/doc/jbig; \
done; \
cd ${WRKSRC}/pbmtools; \
for p in jbgtopbm jbgtopbm85 pbmtojbg pbmtojbg85; do \
${LIBTOOL} --mode=install ${INSTALL_PROGRAM} "$${p}" \
${DESTDIR}${PREFIX}/bin; \
done; \
for m in *.1; do \
${INSTALL_MAN} "$${m}" ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
done;
.include "../../mk/bsd.pkg.mk"