summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 25caeaac8c1945862ceb20067fa729e653e84826 (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
# Maintainer: Tinxy <arch ät tinx døt eu>

pkgname=aard2-slob
_pkgname=slob
pkgver=47.31ad0e7
pkgrel=1
pkgdesc="Aard 2 Dictionary - Tool to work with Slob (sorted list of blobs) dictionary files."
url='https://github.com/itkach/slob'
arch=('any')
license=('GPL3')
depends=('python' 'python-pyicu')
makedepends=('git')
source=("${_pkgname}::git+https://github.com/itkach/slob.git")
sha512sums=('SKIP')

pkgver() {
  cd "${srcdir}/${_pkgname}"
  echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

build() {
  cd "${srcdir}/${_pkgname}"
  #python setup.py build
  
  echo "#!/usr/bin/python" > "${srcdir}/${_pkgname}.py"
  cat "${_pkgname}.py" >> "../${_pkgname}.py"
}

package() {
  cd "${srcdir}"
  install -Dm755  "${_pkgname}.py" "${pkgdir}/usr/bin/${_pkgname}"
}