diff options
Diffstat (limited to 'testing/postler/APKBUILD')
-rw-r--r-- | testing/postler/APKBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/postler/APKBUILD b/testing/postler/APKBUILD new file mode 100644 index 0000000000..d4acf07b9c --- /dev/null +++ b/testing/postler/APKBUILD @@ -0,0 +1,42 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=postler +pkgver=0.1.0 +pkgrel=0 +pkgdesc="Email client" +url="https://launchpad.net/postler/" +arch="all" +license="LGPL-2.1" +depends="msmtp" +makedepends="gtk+-dev webkit-dev libunique-dev libnotify-dev libcanberra-dev + python vala db-dev" +install="" +subpackages="$pkgname-doc" +source="http://www.twotoasts.de/media/postler-$pkgver.tar.bz2 + inet_ntoa.patch" + +_builddir="$srcdir"/postler-$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" + ./waf configure --prefix=/usr \ + --disable-libindicate \ + || return 1 + ./waf build || return 1 +} + +package() { + cd "$_builddir" + ./waf install --destdir="$pkgdir" || return 1 +} + +md5sums="0247cdf1ab8e2d919c9299a52646f47a postler-0.1.0.tar.bz2 +06bb9bb2d1a809b6e58b2a5012393151 inet_ntoa.patch" |