updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git] / makfa / PKGBUILD
blob463ba854914a2e37cee6fd68d9f63245d6983453
1 # Maintainer: Baptiste Jonglez <zerstorer at free dot fr>
2 pkgname=makfa
3 pkgver=20091212
4 pkgrel=3
5 pkgdesc="A dependency-light (Python) single-file command-line makfa Lojban dictionary."
6 arch=('any')
7 url="https://github.com/lojban/makfa-cli"
8 license=("unknown")
9 depends=('python2')
10 # I know it's ugly, but the project hasn't been updated since 2009.
11 # When development resumes, I'll make a proper git package ;)
12 source=("https://github.com/dag/makfa-cli/raw/master/makfa")
13 md5sums=('ec2e19553d874d0a3011c2831465f998')
15 package() {
16   cd "$srcdir"
17   
18   # python -> python2 fix
19   sed -i '1c#!/usr/bin/env python2' makfa
20   
21   # avoids warnings when updating dictionary
22   sed -i -e "s#//valsi#.//valsi#g" -e "s#//nlword#.//nlword#g" makfa
24   install -Dm 755 makfa "${pkgdir}/usr/bin/makfa"
27 # vim:set ts=2 sw=2 et: