Skip to content

Commit

Permalink
user requests, adding skanlite 1.0, plasma-widget-quickaccess 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
demmm committed Oct 29, 2013
1 parent c8f4825 commit 2646c26
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
29 changes: 29 additions & 0 deletions plasma-widget-quickaccess/PKGBUILD
@@ -0,0 +1,29 @@

pkgname=plasma-widget-quickaccess
pkgver=0.8.2
_pkgver=0.8.2-2
pkgrel=1
pkgdesc="Kdeplasma applet for quick access to folders."
arch=('x86_64')
url="http://www.kde-look.org/content/show.php/QuickAccess+(maintenance+fork)?content=101968"
license=('GPL')
depends=('kde-workspace' 'kde-baseapps')
makedepends=('cmake' 'automoc4')
groups=('accessories')
source=("http://kde-look.org/CONTENT/content-files/134442-plasma-widget-quickaccess-$_pkgver.zip")
md5sums=('4879aa3af6d7db8e06dd8ed0ad994a51')

build() {
mkdir build
cd build
cmake ../${pkgname}-${_pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
make
}

package() {
cd build

make DESTDIR=$pkgdir install
}
30 changes: 30 additions & 0 deletions skanlite/PKGBUILD
@@ -0,0 +1,30 @@

pkgname=skanlite
pkgver=1.0
pkgrel=1
pkgdesc="Image Scanning Application for KDE"
arch=('x86_64')
url='http://www.kde.org'
license=('LGPL')
depends=('kdegraphics-libksane' 'kde-runtime' )
makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl')
groups=('graphics')
source=("http://downloads.sourceforge.net/sanewidget/${pkgname}-${pkgver}.tar.bz2")
md5sums=('e22b2719f134d2483591082026961bf5')

build() {
cd ${srcdir}

mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
}

package() {
cd ${srcdir}/build

make DESTDIR=${pkgdir} install
}

0 comments on commit 2646c26

Please sign in to comment.