updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / smartte-git / PKGBUILD
blob89a3bab5e67a9f739c4590ac71abd9f826ba55e9
1 # Contributor: Alex Abbott <smartboyathome@gmail.com>
2 pkgname=smartte-git
3 pkgver=20100718
4 pkgrel=2
5 pkgdesc="Smartboy's text editor, especially focusing on BBCode support."
6 arch=('any')
7 url="https://bbs.archlinux.org/viewtopic.php?id=101233"
8 license=('GPL')
9 depends=('pygtk' 'python-pyenchant')
10 makedepends=('git')
11 source=(smartte)
12 md5sums=('c88a510a92a9ea7d866f9aa4ac0e654a')
14 _gitroot="git://github.com/smartboyathome/SmartTE.git"
15 _gitname="master"
17 build() {
18   cd "$srcdir"
19   msg "Connecting to GIT server...."
21   if [ -d $_gitname ] ; then
22     cd $_gitname && git pull origin
23     msg "The local files are updated."
24   else
25     git clone $_gitroot $_gitname
26   fi
28   msg "GIT checkout done or server timeout"
29   msg "Starting make..."
31   install -m 755 -D SmartTE.py ${pkgdir}/usr/share/SmartTE/SmartTE.py
32   install -m 755 -D undostack.py ${pkgdir}/usr/share/SmartTE/undostack.py
33   install -m 755 -D ../smartte ${pkgdir}/usr/bin/smartte
34