blob: 4acbdfdbff7b43f15d2b64a32a190c4390c70836 (
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
|
# Maintainer: Adrian Room <ingolemo@gmail.com>
_name=lute
pkgname=${_name}-git
pkgver=0.1.0.88.gd93dfa5
pkgrel=1
pkgdesc='A rom library management system for organised gamers'
arch=('x86_64')
url='https://github.com/ingolemo/lute'
license=('GPL3')
depends=('python' 'python-click' 'python-parsimonious' 'python-requests' 'python-toml')
source=('git://github.com/ingolemo/lute.git')
md5sums=('SKIP')
pkgver() {
cd "${_name}"
git describe --tags | sed 's/-/./g'
}
build() {
cd "${srcdir}/${_name}"
python setup.py build
}
package() {
cd "${srcdir}/${_name}"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
|