blob: 61db78fb8c2b97253a283d697e62b760027ccd22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Cainan Mahar <maharcainan@gmail.com>
pkgname=bambootracker-bin
pkgver=0.6.4
pkgrel=1
pkgdesc="A music tracker for the Yamaha YM2608 (OPNA) sound chip"
arch=('x86_64')
url="https://bambootracker.github.io/BambooTracker/"
license=('GPL2')
depends=('qt5-base' 'bash' 'hicolor-icon-theme')
provides=("${pkgname%-bin}")
conflicts=("${pkgname%-bin}")
source=("https://github.com/BambooTracker/BambooTracker/releases/download/v${pkgver}/BambooTracker-v${pkgver}-linux-64bit.zip")
md5sums=('936dd3ac49df6726c2d43d1f6f606389')
package() {
cd "BambooTracker-v${pkgver}-linux-64bit"
install -m 755 -Dt "${pkgdir}/usr/bin" bin/*
cp -dr --preserve=mode,timestamp share "${pkgdir}/usr/share"
}
|