initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

23
libsidplayfp/PKGBUILD Normal file
View File

@@ -0,0 +1,23 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libsidplayfp
pkgver=2.3.0
pkgrel=1
pkgdesc="Library to play Commodore 64 music, derived from libsidplay2"
url='https://github.com/libsidplayfp/libsidplayfp'
arch=('i686' 'x86_64')
license=('GPL-2')
makedepends=('xa')
source=("https://downloads.sourceforge.net/project/sidplay-residfp/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('2141bc9768353fadbb8c6f4ba6904388048d4d1432424b87fe60162135059d5c9312f7bf01c67a75eda8b4697d801bc2020f88b696794311eef88864ae65d974')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
DESTDIR="$pkgdir" make -C $pkgname-$pkgver install
install -Dm644 "$srcdir/$pkgname-$pkgver/COPYING" -t "$pkgdir"/usr/share/licenses/$pkgname
}