summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortomKPZ2019-04-10 14:13:08 -0700
committertomKPZ2019-04-10 14:13:08 -0700
commit022402271c42baa6a1bdc676917aa75a8656feb6 (patch)
treed4662f725a9c6e4973b08ec7c8f19a500ac0c5db
downloadaur-022402271c42baa6a1bdc676917aa75a8656feb6.tar.gz
Initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD23
2 files changed, 37 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..584e881d17d3
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = audiotsm
+ pkgdesc = A real-time audio time-scale modification library
+ pkgver = 0.1.2
+ pkgrel = 1
+ url = https://github.com/Muges/audiotsm
+ arch = any
+ license = MIT
+ makedepends = python3
+ depends = python
+ source = https://files.pythonhosted.org/packages/f8/b8/721a9c613641c938a6fb9c7c3efb173b7f77b519de066e9cd2eeb27c3289/audiotsm-0.1.2.tar.gz
+ md5sums = 5fb754f002da8f68688988fd773c1902
+
+pkgname = audiotsm
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d3c482f56739
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,23 @@
+#Automatically generated by pip2arch on 2019-04-10
+
+pkgname=audiotsm
+pkgver=0.1.2
+pkgrel=1
+pkgdesc="A real-time audio time-scale modification library"
+url="https://github.com/Muges/audiotsm"
+depends=('python' )
+makedepends=('python3' )
+license=('MIT')
+arch=('any')
+source=('https://files.pythonhosted.org/packages/f8/b8/721a9c613641c938a6fb9c7c3efb173b7f77b519de066e9cd2eeb27c3289/audiotsm-0.1.2.tar.gz')
+md5sums=('5fb754f002da8f68688988fd773c1902')
+
+build() {
+ cd $srcdir/audiotsm-0.1.2
+ python setup.py build
+}
+
+package() {
+ cd $srcdir/audiotsm-0.1.2
+ python setup.py install --root="$pkgdir" --optimize=1
+}