summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9fc07a10bfe7ff56df8bde506a5e3557be376ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Chris Billington <chrisjbillington@gmail.com>
pkgname=interminal
pkgver=0.3.7
pkgrel=3
pkgdesc="Utility for launching commands in a GUI terminal"
url="https://github.com/chrisjbillington/interminal"
depends=('python' )
license=('BSD')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('2eee41cae9cc5e2885c29be6eac9e175a5f5b44be8d17153862db09c087f37e0')

build() {
    cd $srcdir/interminal-0.3.7
    python setup.py build
}

package() {
    cd $srcdir/interminal-0.3.7
    python setup.py install --root="$pkgdir" --optimize=1 
}