1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-08 00:22:21 +03:00
openwrt-xburst/package/p910nd/Makefile
nico b8c13ed5e0 change initscript to use more than one port / device,
bump release number.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2080 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-10-08 19:12:51 +00:00

43 lines
1.2 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=p910nd
PKG_VERSION:=0.7
PKG_RELEASE:=2
PKG_MD5SUM:=7bf752532d26c9106f8039db95df3a6b
PKG_SOURCE_URL:=http://www.etherboot.org/p910nd
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_CAT:=bzcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
PKG_INIT_PRIO=70
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,P910ND,p910nd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
touch $@
$(PKG_BUILD_DIR)/.built:
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS) -DLOCKFILE_DIR=\"\\\"/tmp\\\"\""
touch $@
$(IPKG_P910ND):
install -d -m0755 $(IDIR_P910ND)/etc/default
install -m0644 ./files/p910nd.default $(IDIR_P910ND)/etc/default/p910nd
install -d -m0755 $(IDIR_P910ND)/etc/init.d
install -m0755 ./files/p910nd.init $(IDIR_P910ND)/etc/init.d/p910nd
install -d -m0755 $(IDIR_P910ND)/usr/sbin
ln -sf p910nd $(IDIR_P910ND)/etc/init.d/S$(PKG_INIT_PRIO)p910nd
cp -fpR $(PKG_BUILD_DIR)/p910nd $(IDIR_P910ND)/usr/sbin
$(RSTRIP) $(IDIR_P910ND)
$(IPKG_BUILD) $(IDIR_P910ND) $(PACKAGE_DIR)
mostlyclean:
-$(MAKE) -C $(PKG_BUILD_DIR) clean
rm -rf $(PKG_BUILD_DIR)/.built