summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 939598ab526479b68f9bbe004be5e5ee5828f55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=aspell-git
pkgver=0.60.8.20190921.r37.gcef82a8
pkgrel=2
pkgdesc="Free and Open Source spell checker"
arch=('i686' 'x86_64')
url="http://aspell.net/"
license=('LGPL')
depends=('gcc-libs' 'ncurses')
makedepends=('git')
optdepends=('perl: to import old dictionaries')
provides=("aspell=$pkgver")
conflicts=('aspell')
options=('staticlibs')
source=("git+https://git.savannah.gnu.org/git/aspell.git")
sha256sums=('SKIP')


pkgver() {
  cd "aspell"

  _tag=$(git tag -l --sort -v:refname | sed '/rc[0-9]*/d' | head -n1)
  _rev=$(git rev-list --count $_tag..HEAD)
  _hash=$(git rev-parse --short HEAD)
  printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^rel-//;s/-/./g'
}

build() {
  cd "aspell"

  PERL_USE_UNSAFE_INC=1 ./autogen
  ./configure \
    --prefix="/usr" \
    --sysconfdir="/etc" \
    --enable-static
  make
}

package() {
  cd "aspell"

  make DESTDIR="$pkgdir" install
}