mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
830 B
Bash
31 lines
830 B
Bash
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
# Origianl CCR Maintainer:
|
|
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
# Contributer: giacomogiorgianni@gmail.com
|
|
|
|
pkgname=qwinff
|
|
pkgver=0.2.0
|
|
pkgrel=3
|
|
pkgdesc="Another Qt frontend for ffmpeg"
|
|
arch=('x86_64')
|
|
url="http://qwinff.github.io/"
|
|
screenshot="http://1.bp.blogspot.com/-Vv6C_jq52aY/UDzr4i1p20I/AAAAAAAAD1A/ywf_EGgptaE/s1600/1920x1080.jpg"
|
|
license=('GPL3')
|
|
depends=('qt' 'ffmpeg')
|
|
makedepends=('gcc' 'cmake')
|
|
source=(http://sourceforge.net/projects/qwinff/files/release/v${pkgver}/${pkgname}_${pkgver}.tar.gz)
|
|
sha256sums=('5cbb998364106a2e034ce994ed95c34290234319cfabccc7ac40d7c766d17fcf')
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|