mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
7c35908087
This is a C library implementing the Cangjie input method. This library is based on Wan Leung Wong's original libcangjie with some updated API. WWW: https://github.com/Cangjians/libcangjie PR: 223565 Submitted by: hello@blubee.me
34 lines
648 B
Makefile
34 lines
648 B
Makefile
# Created by: blubee <hello@blubee.me>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libcangjie
|
|
PORTVERSION= 1.3
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= chinese
|
|
|
|
MAINTAINER= hello@blubee.me
|
|
COMMENT= C library implementing the Cangjie input method
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libsqlite3.so:databases/sqlite3 \
|
|
libfreetype.so:print/freetype2 \
|
|
libdbus-1.so:devel/dbus
|
|
|
|
USES= autoreconf gmake libtool localbase pkgconfig sqlite
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_XORT= xi
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Cangjians
|
|
GH_PROJECT= libcangjie
|
|
|
|
post-install:
|
|
@(${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so)
|
|
|
|
.include <bsd.port.mk>
|