blob: f41ebee9284bf60675c0ab76c533d4a8a5022f49 (
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
|
# Contributor: taotieren <admin@taotieren.com>
pkgname=fantascene-dynamic-wallpaper
pkgver=1.9.9
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=(mpv
qt5-x11extras
qt5-webengine)
makedepends=(pkgconfig
qt5-tools
make)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('dabb11732e13a5868880acdbee42abb4acc2259e4881fb5385e766e233c2d6b6')
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
}
|