desktop/skanlite/PKGBUILD

31 lines
633 B
Bash
Raw Normal View History

2010-06-06 23:11:42 +08:00
pkgname=skanlite
pkgver=1.1
2015-12-07 03:34:45 +08:00
pkgrel=3
2010-06-06 23:11:42 +08:00
pkgdesc="Image Scanning Application for KDE"
2013-02-26 05:47:53 +08:00
arch=('x86_64')
2010-06-06 23:11:42 +08:00
url='http://www.kde.org'
license=('LGPL')
2015-12-07 03:34:45 +08:00
depends=('libksane4' 'kde-runtime' )
makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl')
categories=('graphics')
2010-06-06 23:11:42 +08:00
options=('docs')
source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz")
md5sums=('21cd642d4177fff759bf4694af39b9fe')
2010-06-06 23:11:42 +08:00
build() {
2015-03-08 07:37:07 +08:00
cd $pkgname-$pkgver
2010-06-06 23:11:42 +08:00
mkdir build
cd build
2015-03-08 07:37:07 +08:00
cmake .. \
2010-06-06 23:11:42 +08:00
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
2013-02-26 05:47:53 +08:00
make
2010-06-06 23:11:42 +08:00
}
package() {
2015-03-08 07:37:07 +08:00
cd $pkgname-$pkgver/build
2013-02-26 05:47:53 +08:00
2015-03-08 07:37:07 +08:00
make DESTDIR=$pkgdir install
2010-06-06 23:11:42 +08:00
}