blob: c2723bc73c8341690456c7f7f30bc36779cd0d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Contributor: taotieren <admin@taotieren.com>
pkgname=fantascene-dynamic-wallpaper
pkgver=2.0.5
pkgrel=1
pkgdesc="dynamic wallpaper. A very nice animated wallpaper on X11 systems.Support Movie and Web animated wallpaper."
arch=($CARCH)
url="https://github.com/dependon/fantascene-dynamic-wallpaper"
license=('GPL-3.0-only')
provides=(${pkgname})
conflicts=(${pkgname} ${pkgname}-git)
depends=(
gcc-libs
glib2
glibc
libx11
libxcb
libxext
xcb-util-wm
mpv
qt5-charts
qt5-base
qt5-multimedia
qt5-webengine
)
makedepends=(
pkgconfig
qt5-tools
make
)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('3b4fd7ed4c47dbbeeff6b2f16d3bd853d189bc802d1bc655122854be77701f3e')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
qmake ./${pkgname}.pro -spec linux-g++ CONFIG+=qtquickcompiler -o build/
make -C ./build
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make INSTALL_ROOT="$pkgdir" -C ./build install
}
|