mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
31 lines
798 B
Bash
31 lines
798 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=fotowall
|
|
pkgver=0.9
|
|
pkgrel=2
|
|
pkgdesc="A tool for rendering collages from photos or pictures"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.enricoros.com/opensource/fotowall/"
|
|
license=('GPL')
|
|
depends=('qt>=4.4')
|
|
categories=('graphics')
|
|
source=(http://$pkgname.googlecode.com/files/Fotowall-$pkgver.tar.bz2)
|
|
md5sums=('142ef697332e0777c6d22c5bc96cc438')
|
|
|
|
build() {
|
|
cd "$srcdir/Fotowall-$pkgver"
|
|
qmake && make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/Fotowall-$pkgver"
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
}
|