summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorPhil Sutter <phil.sutter@viprinet.com>2015-02-24 12:47:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:14:35 +0100
commit47b87aaf4534d12770c75bbc006b27135fdd5225 (patch)
tree3de232bad03d2d92d44cd3ba18984d31f3ef6e2c /package
parent5df5b5feea69a49f818ecb785401a3424af69a6a (diff)
port slang library
TODO: add subpackages for interpreter, colour maps, help files, scripts and actual library.
Diffstat (limited to 'package')
-rw-r--r--package/slang/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/package/slang/Makefile b/package/slang/Makefile
new file mode 100644
index 000000000..0d7ced96d
--- /dev/null
+++ b/package/slang/Makefile
@@ -0,0 +1,43 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= slang
+PKG_VERSION:= 2.3.0
+PKG_RELEASE:= 1
+PKG_HASH:= f95224060f45e0d8212a5039b339afa5f1a94a1bb0298e796104e5b12e926129
+PKG_DESCR:= A multi-platform programmer\'s library designed to allow a developer to create robust software
+PKG_SECTION:= libs/misc
+PKG_URL:= http://www.jedsoft.org/slang/
+PKG_SITES:= http://www.jedsoft.org/releases/slang/
+PKG_NOPARALLEL:= 1
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,SLANG,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --without-pcre \
+ --without-onig \
+ --without-png \
+ --without-z
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_SLANG)/usr/{bin,lib/slang/v2/modules}
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/slsh \
+ $(IDIR_SLANG)/usr/bin
+ ${CP} ${WRKINST}/usr/lib/libslang.so* \
+ ${IDIR_SLANG}/usr/lib
+ ${INSTALL_DATA} ${WRKINST}/usr/lib/slang/v2/modules/*.so \
+ ${IDIR_SLANG}/usr/lib/slang/v2/modules
+ ${INSTALL_DIR} ${IDIR_SLANG}/usr/share/slsh/{cmaps,rline}
+ ${INSTALL_DATA} ${WRKINST}/usr/share/slsh/*.sl \
+ ${IDIR_SLANG}/usr/share/slsh
+ ${INSTALL_DATA} ${WRKINST}/usr/share/slsh/cmaps/*.map \
+ ${IDIR_SLANG}/usr/share/slsh/cmaps
+ ${INSTALL_DATA} ${WRKINST}/usr/share/slsh/rline/*.sl \
+ ${IDIR_SLANG}/usr/share/slsh/rline
+
+# please remove ALL above comments, before commiting
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk