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

30
mp3splt-gtk/PKGBUILD Normal file
View File

@@ -0,0 +1,30 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=mp3splt-gtk
pkgver=0.9.2
pkgrel=1
pkgdesc="Split mp3 and ogg files without decoding"
arch=('i686' 'x86_64')
url='http://mp3splt.sourceforge.net/'
license=('GPL-2')
depends=('desktop-file-utils' 'gtk' 'libmp3splt' 'gst-plugins-good' 'gst-plugins-ugly')
source=(https://downloads.sourceforge.net/sourceforge/mp3splt/$pkgname-$pkgver.tar.gz)
sha512sums=('e837cbc0759cd6535fc466099a170d066ab72b4854f8546f524261fe660887f5d2add60d9fa1e19d68d811004c682a324b5bcba86aa8cb89ae1ad2bc2f9b1d9d')
build() {
cd "${srcdir}"/$pkgname-$pkgver
./configure \
--prefix=/usr \
--disable-gnome \
--disable-mp3splttest \
--disable-audacious
make
}
package() {
cd "${srcdir}"/$pkgname-$pkgver
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
}