| 1 | # |
| 2 | # Copyright (C) 2008-2010 OpenWrt.org |
| 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:=ps3-utils |
| 11 | PKG_REV:=6488134e48cf2d6f2d6471ced8346ac8cb1b855a |
| 12 | PKG_VERSION:=20090320 |
| 13 | PKG_RELEASE:=1 |
| 14 | |
| 15 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |
| 16 | PKG_SOURCE_URL:=http://www.kernel.org/pub/scm/linux/kernel/git/geoff/ps3-utils.git |
| 17 | PKG_SOURCE_PROTO:=git |
| 18 | PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) |
| 19 | PKG_SOURCE_VERSION:=$(PKG_REV) |
| 20 | |
| 21 | PKG_FIXUP:=autoreconf |
| 22 | PKG_INSTALL=1 |
| 23 | |
| 24 | include $(INCLUDE_DIR)/package.mk |
| 25 | |
| 26 | define Package/ps3-utils |
| 27 | SECTION:=utils |
| 28 | CATEGORY:=Utilities |
| 29 | TITLE:=PS3 Linux Utilities |
| 30 | URL:=http://kernel.org/pub/linux/kernel/people/geoff/cell/ps3-utils/ |
| 31 | MAINTAINER:=Geoff Levand <geoffrey.levand@am.sony.com> |
| 32 | DEPENDS:=@TARGET_ps3||TARGET_ps3chk||TARGET_powerpc |
| 33 | endef |
| 34 | |
| 35 | define Package/ps3-utils/description |
| 36 | The ps3-utils package is a set of system administration utilites for the |
| 37 | PS3 game console. |
| 38 | endef |
| 39 | |
| 40 | define Build/Configure |
| 41 | (cd $(PKG_BUILD_DIR) && $(BASH) -x ./bootstrap) |
| 42 | $(call Build/Configure/Default) |
| 43 | endef |
| 44 | |
| 45 | define Build/InstallDev |
| 46 | $(INSTALL_DIR) $(1)/usr/include |
| 47 | $(INSTALL_DATA) \ |
| 48 | $(PKG_INSTALL_DIR)/usr/include/ps3*.h \ |
| 49 | $(1)/usr/include |
| 50 | |
| 51 | $(INSTALL_DIR) $(1)/usr/lib |
| 52 | $(INSTALL_BIN) \ |
| 53 | $(PKG_INSTALL_DIR)/usr/lib/libps3-utils.{la,a,so*} \ |
| 54 | $(1)/usr/lib/ |
| 55 | endef |
| 56 | |
| 57 | define Package/ps3-utils/install |
| 58 | $(INSTALL_DIR) $(1)/usr/sbin |
| 59 | $(INSTALL_DIR) $(1)/usr/bin |
| 60 | $(INSTALL_DIR) $(1)/usr/lib |
| 61 | |
| 62 | $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ps3-boot-game-os $(1)/usr/sbin |
| 63 | $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ps3-dump-bootloader $(1)/usr/sbin |
| 64 | $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ps3-flash-util $(1)/usr/sbin |
| 65 | $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ps3-video-mode $(1)/usr/bin |
| 66 | |
| 67 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libps3-utils.so.* $(1)/usr/lib |
| 68 | endef |
| 69 | |
| 70 | $(eval $(call BuildPackage,ps3-utils)) |
| 71 | |