mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
864 B
Bash
33 lines
864 B
Bash
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
# Original maintainer on CCR: Manuel UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
|
|
pkgname=quiterss
|
|
_pkgname=QuiteRSS
|
|
pkgver=0.17.2
|
|
pkgrel=1
|
|
pkgdesc="QuiteRSS is fast and light rss ,feed reader written in C++/Qt4"
|
|
arch=('x86_64')
|
|
url='http://quiterss.org/'
|
|
license=('GPL3')
|
|
depends=('qtwebkit' 'phonon' 'qwinff')
|
|
makedepends=('cmake' 'gettext' 'automoc4')
|
|
source=("http://quiterss.org/files/${pkgver}/${_pkgname}-${pkgver}-src.tar.bz2")
|
|
md5sums=('6a7a8d1bd46e6fa3fcd0252c8d970570')
|
|
install=${pkgname}.install
|
|
|
|
build() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}-src"
|
|
|
|
qmake ${srcdir}/${_pkgname}-${pkgver}-src/${_pkgname}.pro \
|
|
PREFIX=/usr \
|
|
CONFIG+=LINUX_INTEGRATED \
|
|
INSTALL_ROOT_PATH="${pkgdir}"
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}-src"
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
}
|