Fex

Check-in [4bb722ad3d]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Added PKGBUILD for archlinux
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | master
Files: files | file ages | folders
SHA3-256: 4bb722ad3d28a082a4cc81e5806ef1e3db63cb40e5a9de853acfaa6ef827c947
User & Date: jmcclure 2017-08-27 00:59:21
Context
2017-08-27
01:16
Builing todo list for beta releases check-in: 249c4805aa user: jmcclure tags: trunk, master
00:59
Added PKGBUILD for archlinux check-in: 4bb722ad3d user: jmcclure tags: trunk, master
00:48
Post packaging-test patch-up check-in: 401afa1988 user: jmcclure tags: trunk, master
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added PKGBUILD.



















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Jesse McClure <info at jessemcclure dot org>
_pkgbase=fex
pkgname=fex-fossil
pkgver=2.0.0a1.r20170826
pkgrel=1
pkgdesc="Frequency excursion calculator for quantifying performance of bird song"
arch=('any')
url="http://repo.jessemcclure.org/fex"
license=('MIT')
depends=('python' 'python-setuptools' 'python-pyqt5' 'python-numpy' 'python-scipy')
source=("http://repo.jessemcclure.org/fex/tarball")
md5sums=('SKIP')

pkgver() {
	echo $(sed -n "s/.*version='\([^']*\)',/\1/p" setup.py).r$(date +%Y%m%d)
}

build() {
	python setup.py build
}

package() {
	python setup.py install --root="$pkgdir" --optimize=1
}