Date: Thursday, July 28, 2016 @ 11:45:09 Author: arodseth Revision: 184545
archrelease: copy trunk to community-any Added: asciinema/repos/community-any/PKGBUILD (from rev 184544, asciinema/trunk/PKGBUILD) ----------+ PKGBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) Copied: asciinema/repos/community-any/PKGBUILD (from rev 184544, asciinema/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2016-07-28 11:45:09 UTC (rev 184545) @@ -0,0 +1,22 @@ +# $Id$ +# Maintainer: Alexander F Rødseth <xypr...@archlinux.org> +# Contributor: Marcin Kulik <mar...@asciinema.org> + +pkgname=asciinema +pkgver=1.3.0 +pkgrel=3 +pkgdesc='Record and share your terminal sessions' +arch=('any') +url='https://asciinema.org/' +license=('GPL3') +depends=('python') +source=("$pkgname.tar.gz::https://github.com/asciinema/asciinema/archive/v${pkgver}.tar.gz") +sha256sums=('968016828119d53b8e4e6ccf40a2635704d236f8e805f635c15adc09a4373a55') + +package() { + cd "$pkgname-$pkgver" + + python setup.py install --root="$pkgdir/" --optimize=1 +} + +# vim:set ts=2 sw=2 et: