summaryrefslogtreecommitdiffstats
path: root/lang/php-pear/Makefile
blob: 22fe6feaf2544287331742015db3a18a7af69f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Copyright (C) 2007-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=php-pear
PKG_VERSION:=1.5.4
PKG_RELEASE:=1

PKG_SOURCE:=PEAR-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=http://download.pear.php.net/package
PKG_MD5SUM:=06432c4768fdd7df2c4982c973d3f429

PKG_BUILD_DIR:=$(BUILD_DIR)/PEAR-$(PKG_VERSION)

include $(INCLUDE_DIR)/package.mk

define Package/php-pear
  SUBMENU:=PHP
  SECTION:=lang
  CATEGORY:=Languages
  TITLE:=PEAR
  URL:=http://pear.php.net/package/PEAR
  DEPENDS:=+php5
endef

define Build/Configure
endef

define Build/Compile
endef

define Package/php-pear/install
	$(INSTALL_DIR) $(1)/usr/lib/php
	$(CP)	$(PKG_BUILD_DIR)/PEAR.php $(PKG_BUILD_DIR)/PEAR \
		$(1)/usr/lib/php/
endef

$(eval $(call BuildPackage,php-pear))