summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5e1c757bc301934063c03a3586ea80ea49a58142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Paolo Viotti <skypixel@gmail.com>

pkgname=sayit
pkgver=0.3
pkgrel=1
pkgdesc="A text-to-speech command line tool that uses Azure Cognitive Services."
arch=('any')
url="https://github.com/pviotti/sayit"
license=('MIT')
depends=('dotnet-runtime')
source=(https://github.com/pviotti/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver-linux.zip
        $pkgname)
sha256sums=('b04e5008cf9faad4c0fcefd0ba5b6c3569f6d4776422a01adfa212944f7bf427'
            '40563b76b7a1a667c8c5c04a9e21b4db277e2b09ce29328f3ff95caa72d5e040')

package() {
    install -dm 755 "${pkgdir}/usr/share/$pkgname"
    cp -a "${srcdir}/$pkgname-v$pkgver-linux/." "${pkgdir}/usr/share/$pkgname/"
    install -Dm755 "${srcdir}/$pkgname" "${pkgdir}/usr/bin/$pkgname"
}