summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a48f79dfb44bba2e4e2a2ef9d52be8d776137981 (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=20180126.d685ec1
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" "python-yaml")
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')