diff options
Diffstat (limited to 'community/mpop/PKGBUILD')
-rw-r--r-- | community/mpop/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/mpop/PKGBUILD b/community/mpop/PKGBUILD new file mode 100644 index 000000000..2c0ce660d --- /dev/null +++ b/community/mpop/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Israel Herraiz <isra@herraiz.org> +# Contributor: Roberto Alsina <ralsina@kde.org> + +pkgname=mpop +pkgver=1.0.28 +pkgrel=2 +pkgdesc="A small, fast POP3 client suitable as a fetchmail replacement" +arch=('i686' 'x86_64') +url="http://mpop.sourceforge.net/" +license=('GPL3') +depends=('gnutls' 'libidn') +install=mpop.install +source=("http://downloads.sourceforge.net/mpop/mpop-$pkgver.tar.bz2") +md5sums=('08301208b1f1a40bc5375fea61de3696') +options=(debug !strip) + +build() { + cd "$srcdir/mpop-$pkgver" + + ./configure --prefix=/usr --with-ssl=gnutls + make +} + +package() { + cd "$srcdir/mpop-$pkgver" + + make DESTDIR="$pkgdir" install + install -Dm644 doc/mpoprc.example "$pkgdir/usr/share/mpop/mpoprc.example" +} |