blob: 26d29f5e62c6a91a0a701157675588ba63440ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.22 2014/10/09 14:06:31 wiz Exp $
#
DISTNAME= ucl-1.03
PKGREVISION= 1
CATEGORIES= devel archivers
MASTER_SITES= http://www.oberhumer.com/opensource/ucl/download/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.oberhumer.com/opensource/ucl/
COMMENT= Portable lossless data compression library
USE_LIBTOOL= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --enable-shared=yes
# Avoid path to build directory in example Makefile
SUBST_CLASSES+= example
SUBST_STAGE.example= post-patch
SUBST_FILES.example= examples/Makefile.in
SUBST_SED.example= -e "s|@MAKEINFO@||g"
INSTALLATION_DIRS= bin share/examples/ucl
post-install:
for i in simple.c lutil.h uclpack.c; do \
${INSTALL_DATA} ${WRKSRC}/examples/$$i ${DESTDIR}${PREFIX}/share/examples/ucl;\
done;
cd ${WRKSRC}/examples && libtool --mode=install ${INSTALL_PROGRAM} uclpack ${DESTDIR}${PREFIX}/bin
.include "../../mk/bsd.pkg.mk"
|