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 /testing | |
parent | f95390429f598d7f80c12b5a6e95999805272cb3 (diff) | |
download | aports-b6d9107bfeb01852a20114ed3bf51e1f59805bf0.tar.bz2 aports-b6d9107bfeb01852a20114ed3bf51e1f59805bf0.tar.xz |
main/msmtp: moved from testing
Diffstat (limited to 'testing')
-rw-r--r-- | testing/msmtp/APKBUILD | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/testing/msmtp/APKBUILD b/testing/msmtp/APKBUILD deleted file mode 100644 index 207f705f87..0000000000 --- a/testing/msmtp/APKBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# 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" |