oseama: small util for reading Seama image format info
[openwrt/staging/yousong.git] / package / utils / oseama / Makefile
1 #
2 # Copyright (C) 2016 Rafał Miłecki <zajec5@gmail.com>
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=oseama
11 PKG_RELEASE:=1
12
13 include $(INCLUDE_DIR)/package.mk
14
15 define Package/oseama
16 SECTION:=utils
17 CATEGORY:=Base system
18 TITLE:=Utility for handling Seama firmware images
19 MAINTAINER:=Rafał Miłecki <zajec5@gmail.com>
20 DEPENDS:=@TARGET_bcm53xx
21 endef
22
23 define Package/oseama/description
24 This package contains an utility that allows handling Seama images.
25 endef
26
27 define Build/Prepare
28 mkdir -p $(PKG_BUILD_DIR)
29 $(CP) ./src/* $(PKG_BUILD_DIR)/
30 endef
31
32 define Build/Compile
33 $(MAKE) -C $(PKG_BUILD_DIR) \
34 CC="$(TARGET_CC)" \
35 CFLAGS="$(TARGET_CFLAGS) -Wall"
36 endef
37
38 define Package/oseama/install
39 $(INSTALL_DIR) $(1)/usr/bin
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/oseama $(1)/usr/bin/
41 endef
42
43 $(eval $(call BuildPackage,oseama))