2
0
Fork 0
astroid-git/PKGBUILD

53 lines
1.2 KiB
Bash
Raw Normal View History

2017-01-03 00:20:20 +02:00
# Maintainer: Gaute Hope <eg@gaute.vetsj.com>
2017-03-02 15:37:49 +02:00
_pkgname=astroid
pkgname=$_pkgname-git
2017-10-12 13:13:58 +03:00
pkgver=v0.10.2.r0.gaa8789f
2017-01-03 00:20:20 +02:00
pkgrel=1
epoch=
pkgdesc="a graphical threads-with-tags style, lightweight and fast, email client for notmuch, inspired by sup and others"
arch=('x86_64' 'i686')
url="https://github.com/astroidmail/astroid"
license=('GPL')
groups=()
depends=('notmuch' 'boost' 'boost-libs' 'gmime' 'gtkmm3' 'webkitgtk' 'libsass' 'libpeas' 'gobject-introspection')
2017-10-07 10:09:34 +03:00
makedepends=('meson' 'git' 'pkg-config' 'python-gobject')
2017-01-03 00:20:20 +02:00
checkdepends=('notmuch-runtime')
optdepends=('gvim: default editor'
2017-02-28 14:57:16 +02:00
'emacs: can be used as editor'
'vte3: for drop-down terminal')
2017-01-03 00:20:20 +02:00
provides=('astroid')
conflicts=()
replaces=()
backup=()
options=()
2017-03-02 15:37:49 +02:00
install=$_pkgname.install
2017-01-03 00:20:20 +02:00
changelog=
2017-10-07 10:33:59 +03:00
source=(astroid::git+https://github.com/astroidmail/astroid.git)
2017-01-03 00:20:20 +02:00
noextract=()
md5sums=('SKIP')
build() {
cd "$srcdir/astroid"
2017-10-17 16:59:12 +03:00
LC_ALL=C meson build --prefix=/usr --buildtype release
2017-10-07 10:09:34 +03:00
cd build
ninja
2017-01-03 00:20:20 +02:00
}
check() {
cd "$srcdir/astroid"
2017-10-07 10:09:34 +03:00
cd build
meson test
2017-01-03 00:20:20 +02:00
}
package() {
cd "$srcdir/astroid"
2017-10-07 10:09:34 +03:00
cd build
DESTDIR="$pkgdir" ninja install
2017-01-03 00:20:20 +02:00
}
pkgver() {
cd "astroid"
git describe --long --tags --always | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}