summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/control11
-rwxr-xr-xdebian/rules7
-rw-r--r--lib/feed2imap/feed2imap.rb2
3 files changed, 10 insertions, 10 deletions
diff --git a/debian/control b/debian/control
index c8b09be..8d4fa42 100644
--- a/debian/control
+++ b/debian/control
@@ -9,8 +9,9 @@ Package: feed2imap
Architecture: all
Depends: ruby
Suggests: imap-client, imap-server
-Description: RSS/Atom feed aggregator that uploads items to an IMAP mail server
- Feed2Imap is an RSS/Atom feed aggregator. After Downloading feeds
- (over HTTP or HTTPS), it uploads them to a specified folder of an
- IMAP mail server. The user can then access the feeds using a mail
- reader like Mutt, Evolution, Mozilla Thunderbird or even a webmail.
+Description: feed aggregator (RSS/Atom) that puts items in a IMAP mail server
+ Feed2Imap is an RSS/Atom feed aggregator. After Downloading
+ feeds (over HTTP or HTTPS), it uploads them to a specified
+ folder of an IMAP mail server. The user can then access the
+ feeds using a mail reader like Mutt, Evolution, Mozilla
+ Thunderbird or even a webmail.
diff --git a/debian/rules b/debian/rules
index ddd3e7f..b05818d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -21,9 +21,10 @@ binary-indep: build install
dh_installdocs README
dh_installexamples feed2imaprc-example
cp -r lib/* debian/tmp/usr/lib/ruby/1.8/
- chmod --recursive 0644 debian/tmp/usr/lib/ruby/1.8/*
- chmod 755 `find debian/tmp/usr/lib/ruby/1.8/ -type d`
- install -m 655 bin/feed2imap debian/tmp/usr/bin
+ rm -rf `find debian/tmp -name .svn -type d`
+ chmod --recursive 0644 debian/tmp/*
+ chmod 755 `find debian/tmp -type d`
+ install -m 755 bin/feed2imap debian/tmp/usr/bin
dh_compress
dh_installdeb
dh_shlibdeps
diff --git a/lib/feed2imap/feed2imap.rb b/lib/feed2imap/feed2imap.rb
index 1ae946c..ee46acb 100644
--- a/lib/feed2imap/feed2imap.rb
+++ b/lib/feed2imap/feed2imap.rb
@@ -1,5 +1,3 @@
-#!/usr/bin/ruby
-
=begin
Feed2Imap - RSS/Atom Aggregator uploading to an IMAP Server
Copyright (c) 2005 Lucas Nussbaum <lucas@lucas-nussbaum.net>