mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
40 lines
1.7 KiB
Bash
40 lines
1.7 KiB
Bash
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
|
|
|
pkgname=winff
|
|
_pkgname=WinFF
|
|
pkgver=1.5.2
|
|
pkgrel=1
|
|
pkgdesc="WinFF is a GUI for the command line video converter, FFMPEG. It will convert most any video file that FFmpeg will convert. WinFF does multiple files in multiple formats at one time."
|
|
arch=('x86_64')
|
|
url="http://winff.org/"
|
|
license=('GPL')
|
|
depends=('fpc-qtbindings' 'ffmpeg')
|
|
makedepends=('lazarus' 'fpc')
|
|
source=("http://winff.googlecode.com/files/${_pkgname}-${pkgver}-source.tar.gz"
|
|
'winff.desktop')
|
|
md5sums=('07b940091401193b8705625942b6cc0c'
|
|
'd74b924cd98995ada520f3333c845459')
|
|
screenshot="http://winff.org/images/2013/screenshot-1.5-ubuntu.jpg"
|
|
|
|
build() {
|
|
cd $srcdir
|
|
lazbuild --lazarusdir=/usr/lib/lazarus winff.lpr --ws=qt
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/
|
|
install -Dm 755 $srcdir/$pkgname $pkgdir/usr/bin/winff
|
|
install -dm 755 ${pkgdir}/usr/share/winff/
|
|
find . -name "*.xml" -exec install -Dm 644 {} ${pkgdir}/usr/share/winff/ \; &> /dev/null
|
|
install -Dm 644 $srcdir/winff.desktop $pkgdir/usr/share/applications/winff.desktop
|
|
install -Dm 644 $srcdir/winff-icons/16x16/winff.png $pkgdir/usr/share/icons/hicolor/16x16/apps/winff.png
|
|
install -Dm 644 $srcdir/winff-icons/24x24/winff.png $pkgdir/usr/share/icons/hicolor/24x24/apps/winff.png
|
|
install -Dm 644 $srcdir/winff-icons/32x32/winff.png $pkgdir/usr/share/icons/hicolor/32x32/apps/winff.png
|
|
install -Dm 644 $srcdir/winff-icons/48x48/winff.png $pkgdir/usr/share/icons/hicolor/48x48/apps/winff.png
|
|
install -dm 755 ${pkgdir}/usr/share/winff/languages/
|
|
find . -name "*.po" -exec install -Dm 644 {} ${pkgdir}/usr/share/winff/languages/ \; &> /dev/null
|
|
rm ${srcdir}/presets.xml
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|