mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
33 lines
968 B
Bash
33 lines
968 B
Bash
|
|
# Contributor: Adria Arrufat <swiftscythe@gmail.com>
|
|
# maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=fdesktoprecorder
|
|
pkgver=20121020
|
|
_pkgver=1f43c6
|
|
pkgrel=1
|
|
pkgdesc="A program that can video record a single window or your entire desktop using ffmpeg."
|
|
arch=('i686' 'x86_64')
|
|
url="http://opendesktop.org/content/show.php?content=147844"
|
|
depends=('qt' 'ffmpeg')
|
|
makedepends=('cmake' 'automoc4' 'kdelibs' 'desktop-file-utils')
|
|
categories=('utils')
|
|
screenshot=('http://kde-apps.org/CONTENT/content-pre2/147844-2.png')
|
|
source=("https://github.com/froksen/FDesktopRecorder/tarball/master/froksen-FDesktopRecorder-${_pkgver}.tar.gz")
|
|
license=('GPL')
|
|
md5sums=('e0fb9abbfa6a1b85f90cad30928c6656')
|
|
|
|
build() {
|
|
cd ${srcdir}/froksen-FDesktopRecorder-e${_pkgver}
|
|
mkdir build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/froksen-FDesktopRecorder-e${_pkgver}
|
|
make DESTDIR="$pkgdir" install
|
|
}
|