26 lines
867 B
Bash
26 lines
867 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=bin2iso
|
|
pkgver=1.9d
|
|
pkgrel=1
|
|
pkgdesc="Converts RAW format (.bin/.cue) files to ISO/WAV format"
|
|
arch=('i686' 'x86_64')
|
|
url='https://gitlab.com/bunnylin/bin2iso'
|
|
license=('WTFPL-2.0')
|
|
depends=('glibc')
|
|
source=("https://gitlab.com/bunnylin/bin2iso/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz"
|
|
"LICENSE")
|
|
sha512sums=('5d90afe0b02c993351587da5de73a0f51ad7c32622ece1977b3767f62de783789fa1804a2146cad7a9ba2519ea620a8cca17b70ba8cb92fec41973a2e5f6d15f'
|
|
'fb6575315a22516e29ad414c8e0c9074e0e18a5361ce746524d938e0bf329f7b742b66dc43cfba138f69534d747507e2983b34149d7c66bd4ae2e1b435e37034')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
|
|
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|