diff options
author | Jeff Bilyk <jbilyk@gmail.com> | 2011-06-18 20:47:07 +0000 |
---|---|---|
committer | Jeff Bilyk <jbilyk@gmail.com> | 2011-06-18 20:47:07 +0000 |
commit | b6d9107bfeb01852a20114ed3bf51e1f59805bf0 (patch) | |
tree | 2a3417c085f09a498c587d2e42b2904f9bbc1526 /main/msmtp | |
parent | f95390429f598d7f80c12b5a6e95999805272cb3 (diff) | |
download | aports-b6d9107bfeb01852a20114ed3bf51e1f59805bf0.tar.bz2 aports-b6d9107bfeb01852a20114ed3bf51e1f59805bf0.tar.xz |
main/msmtp: moved from testing
Diffstat (limited to 'main/msmtp')
-rw-r--r-- | main/msmtp/APKBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/main/msmtp/APKBUILD b/main/msmtp/APKBUILD new file mode 100644 index 0000000000..207f705f87 --- /dev/null +++ b/main/msmtp/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=msmtp +pkgver=1.4.24 +pkgrel=0 +pkgdesc="SMTP client with a sendmail compatible interface" +url="http://msmtp.sourceforge.net/" +arch="all" +license="GPLv3+" +depends= +makedepends= +install= +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/project/msmtp/msmtp/$pkgver/msmtp-$pkgver.tar.bz2" + +_builddir="$srcdir"/msmtp-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="3ed704fbd3e7419cab5c65bb7928d9ba msmtp-1.4.24.tar.bz2" |