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

34
l-smash/PKGBUILD Normal file
View File

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=l-smash
pkgver=2.14.5
pkgrel=1
pkgdesc='MP4 muxer and other tools'
arch=('i686' 'x86_64')
url='https://github.com/l-smash/l-smash'
license=('ISC')
depends=('glibc')
source=("l-smash-${pkgver}.tar.gz::https://github.com/l-smash/l-smash/archive/v${pkgver}.tar.gz")
sha512sums=('1dc38cd89d7b317b608d5f5f411ffeac3c1e7fdeea2fc2d7c09d209dce90756c51c27198c20199082fc2168f966a604cef3f9cfd2fd17086ae0f9c0bf50f1ec7')
build() {
cd l-smash-${pkgver}
./configure \
--prefix='/usr' \
--enable-shared \
--disable-static \
--extra-cflags="$CFLAGS" \
--extra-ldflags="$LDFLAGS"
make
}
package() {
cd l-smash-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/l-smash/LICENSE
}
# vim: ts=2 sw=2 et: