desktop/smb4k/PKGBUILD

25 lines
561 B
Bash
Raw Normal View History

2013-03-04 04:54:09 +08:00
pkgname=smb4k
2017-02-06 20:36:23 +08:00
pkgver=1.2.3
2015-10-07 04:56:57 +08:00
pkgrel=1
2013-03-04 04:54:09 +08:00
pkgdesc="A KDE program that browses samba shares"
arch=('x86_64')
url="http://sourceforge.net/projects/smb4k/"
license=('GPL')
depends=('kde-runtime')
makedepends=('cmake' 'automoc4' 'docbook-xsl')
2015-02-27 04:22:52 +08:00
source=("http://sourceforge.net/projects/smb4k/files/$pkgver/$pkgname-$pkgver.tar.xz")
2017-02-06 20:36:23 +08:00
md5sums=('1f4723a7891e41a5d86397765c6863d4')
2013-03-04 04:54:09 +08:00
build() {
2015-02-27 04:22:52 +08:00
cd $pkgname-$pkgver
2013-03-04 04:54:09 +08:00
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RELEASE
make VERBOSE=1
}
package() {
2015-02-27 04:22:52 +08:00
cd $pkgname-$pkgver
2013-03-04 04:54:09 +08:00
2015-10-07 04:56:57 +08:00
make DESTDIR=$pkgdir install
2013-05-13 01:08:54 +08:00
}