Date: Thursday, April 6, 2023 @ 13:29:26
Author: felixonmars
Revision: 1438888
archrelease: copy trunk to community-staging-any
Added:
python-smartypants/repos/community-staging-any/
python-smartypants/repos/community-staging-any/PKGBUILD
(from rev 1438886, python-smartypants/trunk/PKGBUILD)
----------+
PKGBUILD | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
Copied: python-smartypants/repos/community-staging-any/PKGBUILD (from rev
1438886, python-smartypants/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-06 13:29:26 UTC (rev 1438888)
@@ -0,0 +1,22 @@
+# Maintainer: Jiachen Yang <[email protected]>
+# AUR Maintainer: Aetf <aetf at unlimitedcodeworks dot xyz>
+# Contributor: carstene1ns <arch carsten-teibes de>
+
+pkgname=python-smartypants
+_pkgname=smartypants
+pkgver=2.0.1
+pkgrel=10
+pkgdesc="Python with the SmartyPants"
+url="https://bitbucket.org/livibetter/smartypants.py"
+license=('BSD')
+arch=('any')
+depends=('python')
+makedepends=('python')
+sha512sums=('d47a866a5478c3520251f87a93a468a5eea10318b24b2e8d4bc918d533b5a5789aa56d3a8d5fb8ccff9572fb63e5b6f2eafc44f93fb57a19e6621ebef5d64d9d')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/leohemsted/${_pkgname}.py/archive/v${pkgver}.tar.gz")
+
+package() {
+ cd "$srcdir/${_pkgname}.py-$pkgver"
+ python setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}