summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 49a345023a98cd7d9101aee578ccb81b99a03ec1 (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
# Maintainer: sasvari
pkg="pubs"
pkgname="$pkg-git"
pkgver=20171003.2cab166
pkgrel=1
pkgdesc="Your bibliography on the command line"
arch=(any)
url="https://github.com/pubs/pubs"
license=('LGPL-3.0')
depends=("python" "python-configobj" "python-bibtexparser" "python-beautifulsoup4")
makedepends=("git")
provides=("pubs")
source=("git+https://github.com/pubs/pubs.git")

pkgver() {
	cd "$srcdir/$pkg"
	#git describe | sed 's/^v//; s/-/.r/; s/-/./'
	#git rev-parse --short HEAD
	git log -1 --format=%cd.%h --date=short|tr -d -
}

build () {
	cd "$srcdir/$pkg"
	python setup.py build
}

package() {
	cd "$srcdir/$pkg"
	python setup.py install --root="$pkgdir/" --prefix="/usr"
}
md5sums=('SKIP')