1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-29 01:08:54 +03:00
openwrt-packages/crashmail/Makefile
Xiangfu Liu db4f174106 new package: crashmail: CrashMail II is basically
a more portable version of CrashMail,
  a FidoNet tosser for Amiga computers.
2011-06-01 16:53:37 +08:00

37 lines
904 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=crashmail
PKG_VERSION:=0.71
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/crashmail-$(PKG_VERSION)
PKG_SOURCE:=crashmail_$(PKG_VERSION).orig.tar.gz
PKG_SOURCE_URL:=http://ftp.de.debian.org/debian/pool/main/c/crashmail
PKG_MD5SUM:=8dbfa277fec07f477b67b6c7944432bb
include $(INCLUDE_DIR)/package.mk
define Package/crashmail
SECTION:=net
CATEGORY:=Network
TITLE:=CrashMail II
URL:=http://packages.debian.org/ru/squeeze/crashmail
endef
define Package/crashmail/description
CrashMail II is basically a more portable version of CrashMail, a FidoNet tosser for Amiga computers.
endef
define Build/Compile
mkdir -p $(PKG_BUILD_DIR)/bin/
$(MAKE_VARS) $(MAKE) -C $(PKG_BUILD_DIR)/src \
$(MAKE_FLAGS) linux
endef
define Package/crashmail/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_BUILD_DIR)/bin/* $(1)/usr/bin/
endef
$(eval $(call BuildPackage,crashmail))