blob: ad770a357897100d85b5647e261d43baf76cbce9 (
plain)
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
26
27
28
29
30
31
32
|
# Maintainer: maz-1 <ohmygod19993 at gmail dot com>
pkgname=instr2raw
_gitname=$pkgname
pkgver=20150311
pkgrel=1
pkgdesc="SF2/XI instrument inspection/conversion utilities + looppoint insertiontools for AIFF/WAV..all for loopedinstrument fanatics."
arch=(i686 x86_64)
url="https://github.com/coderofsalvation/instr2raw"
license=('AGPL')
depends=('libsndfile')
optdepends=('sox: used for normalizing samples')
makedepends=('git')
source=('git+https://github.com/coderofsalvation/instr2raw.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$_gitname"
git log -1 --format="%cd" --date=short | sed 's|-||g'
}
build() {
cd "$srcdir/$_gitname"
make
}
package() {
cd "$srcdir/$_gitname"
install -dm755 "$pkgdir/usr/bin"
find bin -type f -executable -exec cp {} "$pkgdir/usr/bin" \;
}
|