mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
561 B
Bash
25 lines
561 B
Bash
pkgname=smb4k
|
|
pkgver=1.2.3
|
|
pkgrel=1
|
|
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')
|
|
source=("http://sourceforge.net/projects/smb4k/files/$pkgver/$pkgname-$pkgver.tar.xz")
|
|
md5sums=('1f4723a7891e41a5d86397765c6863d4')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RELEASE
|
|
make VERBOSE=1
|
|
}
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|