blob: c0e92f2b72bd77c9dc5ec6f30c4a2aafd01652e6 (
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
|
# Maintainer: Peter Semiletov peter.semiletov at gmail dot com
pkgname=eko
pkgver=7.1.0
pkgrel=1
pkgdesc="EKO is a simple sound editor with mixer and audio effects."
arch=('x86_64')
url="https://github.com/psemiletov/eko"
license=('GPL')
depends=('qt5-base' 'gcc-libs' 'libsamplerate' 'libsndfile')
source=(https://github.com/psemiletov/eko/archive/$pkgver.tar.gz)
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
qmake-qt5 PREFIX=/usr
make
}
package(){
cd "${srcdir}/${pkgname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}" install
}
md5sums=(12a43742ad8dade8303cb1f3e73a9b9b)
|