1234567891011121314151617181920212223242526272829303132333435 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= cutter
- PKG_VERSION:= 1.03
- PKG_RELEASE:= 2
- PKG_MD5SUM:= 50093db9b64277643969ee75b83ebbd1
- PKG_DESCR:= Abort TCP/IP connections routed over a firewall
- PKG_SECTION:= firewall
- PKG_URL:= http://www.lowth.com/cutter/software/
- PKG_SITES:= http://openadk.org/distfiles/
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tgz
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,CUTTER,cutter,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CONFIG_STYLE:= manual
- BUILD_STYLE:= manual
- INSTALL_STYLE:= manual
- TARGET_CFLAGS+= -Wall
- do-build:
- ${TARGET_CC} ${TARGET_CPPFLAGS} ${TARGET_CFLAGS} ${TARGET_LDFLAGS} \
- ${WRKBUILD}/cutter.c -o ${WRKBUILD}/cutter
- do-install:
- ${INSTALL_DIR} ${IDIR_CUTTER}/usr/sbin
- ${INSTALL_BIN} ${WRKBUILD}/cutter ${IDIR_CUTTER}/usr/sbin
- include ${TOPDIR}/mk/pkg-bottom.mk
|