mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 09:47:14 +08:00
30 lines
643 B
Bash
30 lines
643 B
Bash
pkgname=quiterss
|
|
_pkgname=QuiteRSS
|
|
pkgver=0.17.7
|
|
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' 'icu')
|
|
makedepends=('cmake' 'gettext' 'automoc4')
|
|
source=("http://quiterss.org/files/${pkgver}/${_pkgname}-${pkgver}-src.tar.gz")
|
|
md5sums=('fdb1f068e5b7cb8620017d039ce056fb')
|
|
install=${pkgname}.install
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
|
|
qmake ${srcdir}/${_pkgname}.pro \
|
|
PREFIX=/usr \
|
|
CONFIG+=LINUX_INTEGRATED \
|
|
INSTALL_ROOT_PATH="${pkgdir}"
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
}
|