2012-05-15 10:34:23 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# opkg
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2012-08-12 03:36:31 +02:00
|
|
|
OPKG_VERSION = 635
|
2012-05-15 10:34:23 +02:00
|
|
|
OPKG_SOURCE = opkg-$(OPKG_VERSION).tar.gz
|
2012-08-12 03:36:31 +02:00
|
|
|
OPKG_SITE = http://opkg.googlecode.com/svn/trunk/
|
|
|
|
OPKG_SITE_METHOD = svn
|
2012-05-15 10:34:23 +02:00
|
|
|
OPKG_INSTALL_STAGING = YES
|
|
|
|
OPKG_CONF_OPT = --disable-curl --disable-gpg
|
2012-08-12 03:36:31 +02:00
|
|
|
OPKG_AUTORECONF = YES
|
2012-05-15 10:34:23 +02:00
|
|
|
|
|
|
|
# Ensure directory for lockfile exists
|
|
|
|
define OPKG_CREATE_LOCKDIR
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/lib/opkg
|
|
|
|
endef
|
|
|
|
|
|
|
|
OPKG_POST_INSTALL_TARGET_HOOKS += OPKG_CREATE_LOCKDIR
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|