summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2021-05-12 05:14:26 +0800
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2021-05-12 05:46:57 +0800
commit606ed4808fbffb626d5dfdb36a73916e6255513e (patch)
tree6ab42c8e53f6e9a3987387b49ada059f4cc74c3b
parentdatabases/kyototycoon: Simplify Makefile (diff)
databases/tinycdb: Simplify Makefile
-rw-r--r--databases/tinycdb/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/databases/tinycdb/Makefile b/databases/tinycdb/Makefile
index f1cd957fc044..b0e5b6a4ce0b 100644
--- a/databases/tinycdb/Makefile
+++ b/databases/tinycdb/Makefile
@@ -11,13 +11,14 @@ COMMENT= Analogous to cdb, but faster
LICENSE= PD
+USES= gmake
+
ALL_TARGET= static sharedlib
INSTALL_TARGET= install install-sharedlib
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" prefix="${PREFIX}"
USE_LDCONFIG= yes
-USES= gmake
post-install:
- ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cdb ${STAGEDIR}${PREFIX}/lib/libcdb.so.1
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cdb ${STAGEDIR}${PREFIX}/lib/libcdb.so
.include <bsd.port.mk>