View | Details | Raw Unified | Return to bug 273400
Collapse All | Expand All

(-)b/devel/libjodycode/Makefile (+38 lines)
Added Link Here
1
PORTNAME=	libjodycode
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	3.1
4
CATEGORIES=	devel
5
6
MAINTAINER=	tom@hur.st
7
COMMENT=	Shared code used by several utilities written by Jody Bruchon
8
WWW=		https://github.com/jbruchon/libjodycode
9
10
LICENSE=	MIT
11
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
12
13
USES=		gmake
14
15
USE_LDCONFIG=	yes
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	jbruchon
18
19
MAJOR_VERSION=	${DISTVERSION:C/([0-9]).*/\1/1}
20
21
PLIST_FILES=	include/libjodycode.h \
22
		lib/libjodycode.a \
23
		lib/libjodycode.so \
24
		lib/libjodycode.so.${DISTVERSION} \
25
		lib/libjodycode.so.${MAJOR_VERSION} \
26
		man/man7/libjodycode.7.gz
27
28
do-install:
29
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.7 ${STAGEDIR}${MANPREFIX}/man/man7
30
	${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.h ${STAGEDIR}${PREFIX}/include/${PORTNAME}.h
31
	${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.a ${STAGEDIR}${PREFIX}/lib/${PORTNAME}.a
32
	${INSTALL_LIB} ${WRKSRC}/${PORTNAME}.so.${DISTVERSION} ${STAGEDIR}${PREFIX}/lib
33
	${LN} -sf ${PORTNAME}.so.${DISTVERSION} \
34
		${STAGEDIR}${PREFIX}/lib/${PORTNAME}.so.${MAJOR_VERSION}
35
	${LN} -sf ${PORTNAME}.so.${DISTVERSION} \
36
		${STAGEDIR}${PREFIX}/lib/${PORTNAME}.so
37
38
.include <bsd.port.mk>
(-)b/devel/libjodycode/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1693058130
2
SHA256 (jbruchon-libjodycode-v3.1_GH0.tar.gz) = c72974eb1d38873e06ea84b3d78990f87192f0113da5bd13fcac6bbc6a6e2184
3
SIZE (jbruchon-libjodycode-v3.1_GH0.tar.gz) = 27340
(-)b/devel/libjodycode/pkg-descr (-1 / +2 lines)
Added Link Here
0
- 
1
libjodycode is a library containing code shared among several of the programs
2
written by Jody Bruchon such as imagepile, jdupes, winregfs, and zeromerge.

Return to bug 273400