Date: Thursday, April 6, 2023 @ 16:52:19
Author: felixonmars
Revision: 1439751
archrelease: copy trunk to community-staging-any
Added:
python-nskeyedunarchiver/repos/community-staging-any/
python-nskeyedunarchiver/repos/community-staging-any/PKGBUILD
(from rev 1439748, python-nskeyedunarchiver/trunk/PKGBUILD)
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: python-nskeyedunarchiver/repos/community-staging-any/PKGBUILD (from rev
1439748, python-nskeyedunarchiver/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-06 16:52:19 UTC (rev 1439751)
@@ -0,0 +1,27 @@
+# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org>
+# Contributor: Joaquim Monteiro <[email protected]>
+
+_pyname=NSKeyedUnArchiver
+pkgname=python-nskeyedunarchiver
+pkgver=1.5
+pkgrel=3
+pkgdesc="Library for decoding Apple's text or binary plist files"
+arch=(any)
+url='https://github.com/avibrazil/NSKeyedUnArchiver'
+license=('LGPL')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_pyname::1}/$_pyname/$_pyname-$pkgver.tar.gz")
+sha512sums=('ecdf53bdcfff34366c4fb0d4e4ff45e765a7571374af803a1f9acf6c42fa5d300f00a7e58cb1380e1f5d1e1ad06696652225a6ae4fcfe9b6627f510b749f32e1')
+
+build() {
+ cd "${_pyname}-${pkgver}"
+ python setup.py build
+}
+
+package() {
+ cd "${_pyname}-${pkgver}"
+ python setup.py install -O1 --root="$pkgdir" --skip-build
+}
+
+# vim: ts=2 sw=2 et: