diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-07 13:18:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-07 13:18:35 +0000 |
commit | cf1d28823567abca92168b42db5f2dddd5d758bf (patch) | |
tree | ff084dec9cf7152009902d4edf430f1c6bda797b /openwrt/package/microperl | |
parent | 14d9d9ded312ce9938f8f07abbbba9346d582932 (diff) |
add microperl
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@332 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/microperl')
-rw-r--r-- | openwrt/package/microperl/Config.in | 5 | ||||
-rw-r--r-- | openwrt/package/microperl/Makefile | 42 | ||||
-rw-r--r-- | openwrt/package/microperl/microperl.control | 8 |
3 files changed, 55 insertions, 0 deletions
diff --git a/openwrt/package/microperl/Config.in b/openwrt/package/microperl/Config.in new file mode 100644 index 000000000..a813e1f58 --- /dev/null +++ b/openwrt/package/microperl/Config.in @@ -0,0 +1,5 @@ +config BR2_PACKAGE_MICROPERL + tristate "microperl" + default m + help + Perl without operating-specific functions such as readdir. diff --git a/openwrt/package/microperl/Makefile b/openwrt/package/microperl/Makefile new file mode 100644 index 000000000..ca6368ef5 --- /dev/null +++ b/openwrt/package/microperl/Makefile @@ -0,0 +1,42 @@ +############################################################# +# +# ebtables +# +############################################################# +include $(TOPDIR)/rules.mk + +PKG_NAME:=microperl +PKG_VERSION:=5.8.6 +PKG_RELEASE:=1 +PKG_SOURCE_URL:=ftp://ftp.cpan.org/pub/CPAN/src/5.0 +PKG_SOURCE:=perl-$(PKG_VERSION).tar.gz +PKG_BUILD_DIR:=$(BUILD_DIR)/perl-$(PKG_VERSION) +PKG_CAT:=zcat +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + +$(DL_DIR)/$(PKG_SOURCE): + $(WGET) -P $(DL_DIR) $(PKG_SOURCE_URL)/$(PKG_SOURCE) + +$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) + $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + touch $(PKG_BUILD_DIR)/.unpacked + +$(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.unpacked + $(MAKE) -f Makefile.micro CC="$(TARGET_CC)" OPTIMIZE="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) + +$(PKG_IPK): $(PKG_BUILD_DIR)/$(PKG_NAME) + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + mkdir -p $(PKG_IPK_DIR)/usr/bin + cp $(PKG_BUILD_DIR)/$(PKG_NAME) $(PKG_IPK_DIR)/usr/bin/ + $(STRIP) $(PKG_IPK_DIR)/usr/bin/* + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +source: $(DL_DIR)/$(PKG_SOURCE) +prepare: $(PKG_BUILD_DIR)/.unpacked +compile: $(PKG_IPK) +install: + $(IPKG) install $(PKG_IPK) +clean: + rm -rf $(PKG_BUILD_DIR) diff --git a/openwrt/package/microperl/microperl.control b/openwrt/package/microperl/microperl.control new file mode 100644 index 000000000..4aefc693c --- /dev/null +++ b/openwrt/package/microperl/microperl.control @@ -0,0 +1,8 @@ +Package: microperl +Priority: optional +Section: net +Version: 5.8.6 +Architecture: mipsel +Maintainer: Felix Fietkau <nbd@vd-s.ath.cx> +Source: buildroot internal +Description: Perl without operating-specific functions such as readdir. |