mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-20 15:22:24 +01:00
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
# Contributor: Díaz Urbaneja Diego <sodomon2@gmail.com>
|
|
# Maintainer: Díaz Urbaneja Diego <sodomon2@gmail.com>
|
|
pkgname=simplescreenrecorder
|
|
pkgver=0.4.3
|
|
pkgrel=0
|
|
pkgdesc="Screen recorder for Linux"
|
|
url="http://www.maartenbaert.be/simplescreenrecorder/"
|
|
arch="x86_64 x86" #disabled for the other architectures due to compiling problems
|
|
license="GPL-3.0-only"
|
|
makedepends="
|
|
alsa-lib-dev
|
|
cmake
|
|
ffmpeg4-dev
|
|
glu-dev
|
|
jack-dev
|
|
libx11-dev
|
|
libxext-dev
|
|
libxfixes-dev
|
|
libxi-dev
|
|
libxinerama-dev
|
|
make
|
|
mesa-dev
|
|
pkgconfig
|
|
pulseaudio-dev
|
|
qt5-qtbase-dev
|
|
qt5-qttools-dev
|
|
qt5-qtx11extras-dev
|
|
samurai
|
|
v4l-utils-dev
|
|
"
|
|
subpackages="$pkgname-doc"
|
|
options="!check" # make check not implemented
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/MaartenBaert/ssr/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/ssr-$pkgver"
|
|
|
|
build() {
|
|
cmake -G Ninja -B build \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
-DWITH_QT5=on \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
c930045d6763bdb026cee80fe82aa0e973de7a1bd92bce9650c5cae627f5d8f8d913f260024410a41170081c8eda61c1aea346bc2d9740b8dc169a3952b3bfd0 simplescreenrecorder-0.4.3.tar.gz
|
|
"
|