CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
msmtp: moved from core collection
authorJose V Beneyto <sepen@crux.nu>
Tue, 14 Jun 2011 07:53:49 +0000 (09:53 +0200)
committerJose V Beneyto <sepen@crux.nu>
Tue, 14 Jun 2011 07:53:49 +0000 (09:53 +0200)
msmtp/.footprint [new file with mode: 0644]
msmtp/.md5sum [new file with mode: 0644]
msmtp/Pkgfile [new file with mode: 0644]

diff --git a/msmtp/.footprint b/msmtp/.footprint
new file mode 100644 (file)
index 0000000..92c6289
--- /dev/null
@@ -0,0 +1,9 @@
+drwxr-xr-x     root/root       usr/
+drwxr-xr-x     root/root       usr/bin/
+-rwxr-xr-x     root/root       usr/bin/msmtp
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rw-r--r--     root/root       usr/man/man1/msmtp.1.gz
+drwxr-xr-x     root/root       usr/man/man8/
+drwxr-xr-x     root/root       usr/sbin/
+lrwxrwxrwx     root/root       usr/sbin/sendmail -> /usr/bin/msmtp
diff --git a/msmtp/.md5sum b/msmtp/.md5sum
new file mode 100644 (file)
index 0000000..0d70915
--- /dev/null
@@ -0,0 +1 @@
+5fb7ae88186624cdb125d3efad3fdc16  msmtp-1.4.23.tar.bz2
diff --git a/msmtp/Pkgfile b/msmtp/Pkgfile
new file mode 100644 (file)
index 0000000..c858c8a
--- /dev/null
@@ -0,0 +1,27 @@
+# Description: An SMTP client suitable for use with mutt etc.
+# URL: http://msmtp.sourceforge.net/
+# Packager: Jukka Heino, jukka dot heino at gmail dot com
+# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
+# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
+# Depends on: openssl
+
+name=msmtp
+version=1.4.23
+release=1
+source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
+
+build() {
+  cd $name-$version
+  ./configure --build=$CHOST \
+              --host=$CTARGET \
+              --prefix=/usr \
+              --mandir=/usr/man \
+              --with-ssl=openssl \
+              --disable-nls
+  make
+  make DESTDIR=$PKG install
+  rm -r $PKG/usr/share
+  install -d $PKG/usr/{sbin,man/man8}
+  ln -s /usr/bin/$name $PKG/usr/sbin/sendmail
+  ln -s /usr/man/man1/$name.1 $PKG/usr/man/man8/sendmail.8
+}