Search Criteria
Package Details: archivemail 0.9.0-3
Git Clone URL: | https://aur.archlinux.org/archivemail.git (read-only, click to copy) |
---|---|
Package Base: | archivemail |
Description: | A tool for archiving and compressing old email in mailboxes |
Upstream URL: | http://archivemail.sourceforge.net/ |
Licenses: | |
Submitter: | None |
Maintainer: | sloppybench |
Last Packager: | sloppybench |
Votes: | 6 |
Popularity: | 0.000000 |
First Submitted: | 2008-06-09 18:24 |
Last Updated: | 2015-06-30 15:06 |
Latest Comments
Pierre commented on 2011-07-20 08:33
I don't even know how I managed to make so much typos in a single line. I have uploaded a fixed version. The package somehow did work for me though so I didn't notice.
net147 commented on 2011-07-19 04:37
There is an error in the sed line in PKGBUILD. It should be:
sed 's|^#! /usr/bin/env python$|#! /usr/bin/env python2|' -i $f
Pierre commented on 2010-10-24 08:52
Here is a new pkgbuild; please update.
pkgname=archivemail
pkgver=0.8.2
pkgrel=1
pkgdesc='A tool for archiving and compressing old email in mailboxes'
arch=('any')
url='http://archivemail.sourceforge.net/'
license=('GPL')
depends=('python2')
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('04d8a028767b2a7531e1f3ee120f6eae')
build() {
cd $srcdir/$pkgname-$pkgver
for f in setup.py test_archivemail archivemail; do
sed 's#/usrbin/evn python#/usrbin/evn python2#g' -i $f
done
python2 setup.py install --root=$pkgdir
install -d $pkgdir/usr/share
mv $pkgdir/usr/man $pkgdir/usr/share
}