2
0
Fork 0
astroid-git/PKGBUILD

63 lines
1.6 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
2018-08-30 12:01:52 +03:00
pkgver=v0.13.r24.g20b9171
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=()
2018-07-01 13:11:22 +03:00
depends=('notmuch' 'boost' 'boost-libs' 'gmime' 'gtkmm3' 'webkit2gtk' 'libsass' 'libpeas' 'gobject-introspection' 'protobuf')
2018-08-30 12:01:52 +03:00
makedepends=('cmake' 'ninja' 'git' 'pkg-config' 'python-gobject' 'cmark')
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'
2018-08-30 12:01:52 +03:00
'vte3: for drop-down terminal'
'cmark: for markdown to html composition')
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=
2018-08-30 12:01:52 +03:00
source=(astroid::git+https://github.com/astroidmail/astroid.git astroid.1.gz)
2017-01-03 00:20:20 +02:00
noextract=()
2018-08-30 12:01:52 +03:00
md5sums=('SKIP'
2018-09-03 15:20:16 +03:00
'1cae3fa289d3061dd7d1ac2aa1f9c643')
2017-01-03 00:20:20 +02:00
build() {
cd "$srcdir/astroid"
2017-11-15 14:43:17 +02:00
mkdir -p build
2017-10-07 10:09:34 +03:00
cd build
2018-08-30 12:01:52 +03:00
# We ship the manpage to avoid an AUR dependency
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DDISABLE_DOCS=ON
2017-10-07 10:09:34 +03:00
ninja
2017-01-03 00:20:20 +02:00
}
check() {
cd "$srcdir/astroid"
2017-10-07 10:09:34 +03:00
cd build
2018-02-07 14:31:40 +02:00
ctest --output-on-failure
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
2018-08-30 12:01:52 +03:00
# install manpage
mkdir -p "$pkgdir/usr/share/man/man1"
cp "$srcdir/astroid.1.gz" "$pkgdir/usr/share/man/man1/"
2017-01-03 00:20:20 +02:00
}
pkgver() {
cd "astroid"
git describe --long --tags --always | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}