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

25
soundconverter/PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=soundconverter
pkgver=4.0.1
pkgrel=1
pkgdesc='A simple sound converter application'
arch=('any')
license=('GPL-3')
url='https://soundconverter.org/'
depends=('python-gobject' 'gst-python' 'gst-plugins-ugly' 'desktop-file-utils' 'gst-plugins-good')
makedepends=('python-distutils-extra' 'gettext-tiny')
source=("https://launchpad.net/soundconverter/trunk/$pkgver/+download/soundconverter-$pkgver.tar.gz")
sha512sums=('0c146a08b49d0fc71fc402ed73a6b7fd167986c44467385ecb29b2c17b7944437e84f2f6e9146bfb812bd7aeed7e98bbb68452a57f80970fb428f7acfb17eaf0')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
python3 setup.py build
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
python3 setup.py install --prefix=${pkgdir}/usr
rm ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
}