# Maintainer: Caleb Maclennan # Maintainer: svkampen # Contributor: Charlotte Van Petegem # Contributor: jpate # See Debian packaging for details, rules and control files linked here: # https://tracker.debian.org/pkg/praat # TODO: Build and package praat-nogui and sendpraat, as in Debian. pkgname=praat pkgver=6.3 pkgrel=1 pkgdesc='A speech analysis tool used for doing phonetics by computer' arch=(x86_64 i686 aarch64) url=https://www.praat.org license=(GPL) depends=(alsa-lib gtk3 jack libpulse ttf-charis-sil ttf-sil-doulos) optdepends=('ttf-sil-fonts') _url="https://github.com/$pkgname/$pkgname" _archive="$pkgname-$pkgver" source=("$_url/archive/v$pkgver/$_archive.tar.gz" "$pkgname.1" "$pkgname.desktop" "$pkgname.svg" "$pkgname.xpm") sha256sums=('5d294c046ab07509a4c94851f7f9060089897b1fa90eaa335d84fd3e147e181e' '21ee03cae45be634c57c167c2dfbdfd9d9b7feadb98e0124413d9426c199e81c' '94720aedc8e9c9e9d53b3230d79ccaae551b5bc5e6986528664311d55f3cce5a' 'db6c7568f6e13b4ce7c37bd9fcf289832867f79ba7d7fc48c4f13f0045ad98f1' '07abf61475f22f83f0514a8fba1ec7bd3821d2b7f35b1215c1f3e1feb947d74b') prepare() { cd "$_archive" cp makefiles/makefile.defs.linux.pulse makefile.defs } build() { cd "$_archive" make } package() { cd "$_archive" install -Dm0755 -t "$pkgdir/usr/bin/" "$pkgname" install -Dm0644 -t "$pkgdir/usr/share/applications/" "../$pkgname.desktop" install -Dm0644 -t "$pkgdir/usr/share/icons/hicolor/scalable/apps/" "../$pkgname.svg" install -Dm0644 -t "$pkgdir/usr/share/pixmaps/" "../$pkgname.xpm" install -Dm0644 -t "$pkgdir/usr/share/man/man1/" "../$pkgname.1" }