blob: 206f57684eac7f50d856a047d86f8eb1fe4f0b4c (
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
|
# Maintainer: Celestial Walrus <aur@celestial.cf>
pkgname=wave-git
_pkgname=wave
pkgver=r35.932cbd5
pkgrel=1
pkgdesc='A simple command that outputs a sampled sine wave to stdout. Can be used to play music.'
arch=(i686 x86_64)
url='https://github.com/efferifick/wave'
license=(none)
depends=(glibc)
makedepends=(git)
source=(git://github.com/efferifick/wave)
sha1sums=('SKIP')
pkgver() {
cd $_pkgname
echo r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd $_pkgname
make
}
package() {
cd $_pkgname
install -Dm755 "src/wave" "$pkgdir/usr/bin/wave"
}
|