diff options
author | sekret | 2017-09-24 11:04:02 +0200 |
---|---|---|
committer | sekret | 2017-09-24 11:04:02 +0200 |
commit | 7828f982b45efe2603cc5aacca47e5b04f8e611a (patch) | |
tree | e776162c476f6a93889a55ddc4c3f7fed03100eb /PKGBUILD | |
download | aur-7828f982b45efe2603cc5aacca47e5b04f8e611a.tar.gz |
initial release
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..99c6ecec8b3 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: sekret, mail=$(echo c2VrcmV0QHBvc3Rlby5zZQo= | base64 -d) + +_pkgname=plotbitrate +pkgname=$_pkgname-git +pkgver=0.r13.f93131f +pkgrel=1 +pkgdesc="a script for plotting the bitrate of an audio or video stream over time" +arch=('any') +url="https://github.com/zeroepoch/plotbitrate" +license=('BSD') +depends=('python-matplotlib' 'ffmpeg') +makedepends=('git') +provides=("$_pkgname") +conflicts=("$_pkgname") +source=("$_pkgname::git+$url.git") +md5sums=('SKIP') + +pkgver() { + cd "$_pkgname" + printf "0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +package() { + cd "$_pkgname" + install -Dm755 "$_pkgname.py" "$pkgdir/usr/bin/$_pkgname" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et: |