mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-04 22:57:30 +02:00
new package: offlineimap, Read/sync your IMAP mailboxes [Python]
mark as BROKEN, there is an error when start at nanonote: ssl_wrap = socket.ssl AttributeError: 'module' object has no attribute 'ssl'
This commit is contained in:
parent
f93258ccb6
commit
3fb4302e3a
48
offlineimap/Makefile
Normal file
48
offlineimap/Makefile
Normal file
@ -0,0 +1,48 @@
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=offlineimap
|
||||
PKG_VERSION:=6.2.0.2
|
||||
|
||||
PKG_SOURCE:=jgoerzen-$(PKG_NAME)-debian-$(PKG_VERSION)-0-g6b1cb5e.tar.gz
|
||||
PKG_SOURCE_URL:=http://download.github.com/
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/jgoerzen-$(PKG_NAME)-0f1a667
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/offlineimap
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
TITLE:=offlineimap
|
||||
URL:=http://wiki.github.com/jgoerzen/offlineimap/
|
||||
DEPENDS:=python @BROKEN
|
||||
endef
|
||||
|
||||
define Package/offlineimap/description
|
||||
Read/sync your IMAP mailboxes [Python]
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/offlineimap/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin/
|
||||
$(INSTALL_DIR) $(1)/usr/share/offlineimap/offlineimap
|
||||
|
||||
echo -e "\0043\0041/bin/sh\n(cd /usr/share/offlineimap; ./offlineimap.py)" > $(1)/usr/bin/offlineimap
|
||||
chmod +x $(1)/usr/bin/offlineimap
|
||||
|
||||
$(INSTALL_BIN) \
|
||||
$(PKG_BUILD_DIR)/bin/offlineimap \
|
||||
$(1)/usr/share/offlineimap/offlineimap.py
|
||||
$(CP) \
|
||||
$(PKG_BUILD_DIR)/offlineimap/* \
|
||||
$(1)/usr/share/offlineimap/offlineimap/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,offlineimap))
|
Loading…
Reference in New Issue
Block a user