mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
21 lines
746 B
Bash
21 lines
746 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
|
|
# Contributor : Lone_Wolf lonewolf@xs4all.nl
|
|
pkgname=sfarkxtc
|
|
pkgver=1.03
|
|
pkgrel=5
|
|
pkgdesc="Decompressor for soundfonts"
|
|
arch=('i686' 'x86_64')
|
|
url="http://melodymachine.com/sfark.htm"
|
|
license=('custom')
|
|
[ "$CARCH" == "i686" ] && depends=(libstdc++5)
|
|
[ "$CARCH" == "x86_64" ] && depends=(lib32-libstdc++5)
|
|
makedepends=()
|
|
source=(http://melodymachine.com/files/$pkgname"_lx86.tar.gz" license)
|
|
md5sums=('3350e57ed3d09e9477d125dfc23e21f1' '0aac11e027a3c9f4ead6b1e13874168f')
|
|
|
|
|
|
build() {
|
|
install -Dm755 $startdir/src/sfarkxtc $startdir/pkg/usr/bin/sfarkxtc
|
|
install -Dm644 $startdir/src/license $startdir/pkg/usr/share/licenses/$pkgname/license
|
|
}
|