blob: 7c13c69d854a0a341433c516d5422eb41734b709 (
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
|
# Maintainer: Yigit Sever <yigit at yigitsever dot com>
# Contributor: Caltlgin Stsodaat <contact@fossdaily.xyz>
pkgname='reco'
pkgver=5.2.1
pkgrel=1
pkgdesc='An audio recording app designed for elementary OS'
arch=('x86_64')
url='https://github.com/ryonakano/reco'
license=('GPL-3.0-or-later')
depends=('gstreamer' 'libpulse' 'ryokucha' 'live-chart' 'libadwaita')
makedepends=('meson' 'vala' 'libhandy' 'blueprint-compiler')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
sha256sums=('1f56164c8d362772fbc8ff17448b261e9820b1957712ea9d2af924da3e92da2a')
build() {
arch-meson "${pkgname}-${pkgver}" build -Duse_submodule=false
meson compile -C build
}
package() {
DESTDIR="${pkgdir}" meson install -C build
ln -s /usr/bin/com.github.ryonakano.reco "${pkgdir}/usr/bin/reco"
install -Dm644 -t "${pkgdir}/usr/share/doc/${pkgname}" "${pkgname}-${pkgver}/README.md"
}
|