mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
27 lines
850 B
Bash
27 lines
850 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=konq-plugins-reaitlater
|
||
|
pkgver=0.2.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Read It Later is a konqueror plugin that allows to save webpages to Instapaper."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://kde-apps.org/content/show.php/Read+It+Later?content=124667"
|
||
|
license=('GPL')
|
||
|
depends=('kdebase-konqueror')
|
||
|
source=("http://kde-apps.org/CONTENT/content-files/124667-konqueror-plugin-readitlater.tar.gz")
|
||
|
md5sums=('02d722983d2c9efcfbeba46792305471')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/konqueror-plugin-readitlater/
|
||
|
mkdir build && cd build
|
||
|
cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|