pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Fixing absolute paths | Adding DESCR



Module Name:	pkgsrc-wip
Committed By:	Angel M. Adames <angelmadames%gmail.com@localhost>
Pushed By:	angelmadames
Date:		Thu May 18 13:45:08 2017 -0400
Changeset:	c2a46b88dbb6602dd34ea99d0adae7571786ce81

Modified Files:
	libtpl/DESCR
	libtpl/Makefile

Log Message:
Fixing absolute paths | Adding DESCR

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c2a46b88dbb6602dd34ea99d0adae7571786ce81

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 libtpl/DESCR    |  4 ++++
 libtpl/Makefile | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

diffs:
diff --git a/libtpl/DESCR b/libtpl/DESCR
index e69de29bb2..9bdc92ce74 100644
--- a/libtpl/DESCR
+++ b/libtpl/DESCR
@@ -0,0 +1,4 @@
+You can use tpl to store and reload your C data quickly and easily.
+Tpl works with files, memory buffers and file descriptors so it's suitable
+for use as a file format, IPC message format or any scenario
+where you need to store and retrieve your data.
diff --git a/libtpl/Makefile b/libtpl/Makefile
index 78f74f1a8d..7af11526e9 100644
--- a/libtpl/Makefile
+++ b/libtpl/Makefile
@@ -1,5 +1,5 @@
 # $NetBSD$
-
+#
 GITHUB_PROJECT=	tpl
 DISTNAME=	v1.6.1
 PKGNAME=	${GITHUB_PROJECT}-${DISTNAME}
@@ -10,19 +10,19 @@ DIST_SUBDIR=	${GITHUB_PROJECT}
 
 MAINTAINER=	angelmadames%gmail.com@localhost
 HOMEPAGE=	https://github.com/troydhanson/tpl/
-COMMENT=	store and reload your C data
+COMMENT=	Store and reload your C data
 LICENSE=	BSD
 
 GNU_CONFIGURE= 	yes
 USE_LIBTOOL=	yes
 USE_TOOLS+=	automake autoconf aclocal
 USE_LANGUAGES=	c c++
-WRKSRC=		${WRKDIR}/tpl-1.6.1
-CONFIGURE_ARGS+=${PREFIX}
+WRKSRC=			${WRKDIR}/tpl-1.6.1
+CONFIGURE_ARGS+=	${PREFIX}
 
 pre-configure:
 	set -x; cd ${WRKSRC}; libtoolize --copy --force; aclocal -I config; autoheader; automake --foreign --add-missing --copy; autoconf
 post-install:
-	${LIBTOOL} --finish /usr/pkg/lib
+	${LIBTOOL} --finish ${PREFIX}/lib
 
 .include "../../mk/bsd.pkg.mk"


Home | Main Index | Thread Index | Old Index