Date: Saturday, April 18, 2015 @ 09:31:07 Author: fyan Revision: 131610
addpkg: thefuck 1.7-1 Added: thefuck/ thefuck/repos/ thefuck/trunk/ thefuck/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: thefuck/trunk/PKGBUILD =================================================================== --- thefuck/trunk/PKGBUILD (rev 0) +++ thefuck/trunk/PKGBUILD 2015-04-18 07:31:07 UTC (rev 131610) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> + +pkgname=thefuck +pkgver=1.7 +pkgrel=1 +pkgdesc="Magnificent app which corrects your previous console command" +arch=('any') +url="https://github.com/nvbn/thefuck" +license=('MIT') +depends=('python-setuptools' 'python-pathlib') +checkdepends=('python-pytest' 'python-mock') +source=("https://pypi.python.org/packages/source/t/thefuck/thefuck-$pkgver.tar.gz") +sha256sums=('aa2b4547479b1cd61f21e9fd42e37b37f67c64fa34e9e6119d5f64d976498b40') + +build() { + cd "${srcdir}/thefuck-$pkgver" + python setup.py build +} + +check() { + # Tests not included in released tarball + cd "${srcdir}/thefuck-$pkgver" + # py.test +} + +package() { + cd thefuck-$pkgver + python3 setup.py install -O1 --prefix=/usr --root="$pkgdir/" +} + +# vim:set ts=2 sw=2 et: Property changes on: thefuck/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
