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

28
smplayer-skins/PKGBUILD Normal file
View File

@@ -0,0 +1,28 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=smplayer-skins
pkgver=20.11.0
pkgrel=1
pkgdesc="Skins for SMPlayer"
arch=('any')
url='https://smplayer.info'
license=('GPL-2' 'LGPL-3' 'CC-BY-2.5' 'CC-BY-SA-2.5' 'CC-BY-SA-3.0')
depends=('smplayer-legacy')
source=("https://downloads.sourceforge.net/smplayer/${pkgname}-${pkgver}.tar.bz2")
sha512sums=('a52464b3b0aca82caf3762fde0ad7f1084e7e37b936f97d05f758554f84188cee11cb4d4630575ec10ed3970f0b77bceabb3f90fe4e43ff7d29b5c2725741a7d')
build() {
cd "${pkgname}-${pkgver}"
make PREFIX=/usr
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}/" PREFIX=/usr install
# remove questionable data, out of trademarks and copyrights
rm -rf "${pkgdir}"/usr/share/smplayer/themes/{Mac,Vista}
install -Dm644 {README.txt,Changelog} -t "${pkgdir}/usr/share/doc/${pkgname}/"
install -Dm644 COPYING*.txt -t "${pkgdir}/usr/share/licenses/$pkgname"
}