mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
23 lines
600 B
Bash
23 lines
600 B
Bash
pkgname=fotowall
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="A tool for rendering collages from photos or pictures"
|
|
arch=('x86_64')
|
|
url="http://www.enricoros.com/opensource/fotowall/"
|
|
license=('GPL')
|
|
depends=('qt5-svg' 'desktop-file-utils')
|
|
categories=('graphics')
|
|
source=("https://github.com/enricoros/fotowall/archive/v$pkgver.tar.gz")
|
|
md5sums=('cc3f36d917edb1c86916332b605ce570')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
sed -i 's|Icon=fotowall|Icon=/usr/share/pixmaps/fotowall.png|' $pkgname.desktop
|
|
qmake-qt5 PREFIX=/usr $pkgname.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make -C $pkgname-$pkgver INSTALL_ROOT=$pkgdir install
|
|
}
|