diff options
author | Travis Kemen <thepeople@openwrt.org> | 2008-08-16 06:35:14 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2008-08-16 06:35:14 +0000 |
commit | 55722b974ec5008da60e6e2abb72248f43064600 (patch) | |
tree | 73d062cf40a8a2e0aaf64721d7f06700eda6eb71 /package/opkg/Makefile | |
parent | e1136282239d6a0fbe5098137b21407b6b140251 (diff) | |
download | upstream-55722b974ec5008da60e6e2abb72248f43064600.tar.gz upstream-55722b974ec5008da60e6e2abb72248f43064600.tar.bz2 upstream-55722b974ec5008da60e6e2abb72248f43064600.zip |
make opkg the default package manager, disable busybox ipkg from building by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12319 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg/Makefile')
-rw-r--r-- | package/opkg/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile index 97971b3af5..67de0bcb6d 100644 --- a/package/opkg/Makefile +++ b/package/opkg/Makefile @@ -36,6 +36,10 @@ define Package/opkg/description opkg knows how to install both .ipk and .deb packages. endef +define Package/opkg/conffiles +/etc/opkg.conf +endef + TARGET_CFLAGS += $(FPIC) EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/lib EXTRA_LDFLAGS+=-L$(STAGING_DIR)/usr/lib -Wl,-rpath-link,$(STAGING_DIR)/usr/lib @@ -59,8 +63,12 @@ define Build/Compile endef define Package/opkg/install - $(INSTALL_BIN) ./files/postinst $(1)/CONTROL/postinst + $(INSTALL_DIR) $(1)/usr/lib/opkg $(INSTALL_DIR) $(1)/bin + $(INSTALL_DIR) $(1)/etc + $(INSTALL_DATA) ./files/opkg.conf $(1)/etc/ + $(SED) 's,$$$$S,$(BOARD),g' -e 's,$$$$A,$(ARCH),g' $(1)/etc/opkg.conf + $(SED) 's,$$$$S,$(BOARD),g' $(1)/etc/opkg.conf $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opkg-cl $(1)/bin/opkg $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libopkg.so.* $(1)/usr/lib/ |