mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
26 lines
803 B
Bash
26 lines
803 B
Bash
pkgname=smplayer-skins
|
|
pkgver=15.2.0
|
|
pkgrel=1
|
|
pkgdesc="Skin themes for SMPlayer"
|
|
arch=('any')
|
|
url="http://smplayer.sourceforge.net/"
|
|
screenshot="http://smplayer.sourceforge.net/images/screenshots/thumbs/th_smplayer_skin_modern3.png"
|
|
license=('GPL')
|
|
depends=("smplayer")
|
|
source=("http://downloads.sourceforge.net/smplayer/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('57e165cf9a95808fafd179e5322b7f15')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
make PREFIX=$pkgdir/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make PREFIX=$pkgdir/usr install
|
|
install -dpm755 ${pkgdir}/usr/share/licenses/${pkgname}
|
|
install -Dpm644 COPYING* ${pkgdir}/usr/share/licenses/${pkgname}/
|
|
install -dpm755 ${pkgdir}/usr/share/doc/${pkgname}
|
|
install -Dpm644 Changelog README.txt smplayer-skins.spec ${pkgdir}/usr/share/doc/${pkgname}/
|
|
}
|