mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
588 B
Bash
27 lines
588 B
Bash
pkgname=quick-usb-formatter
|
|
pkgver=0.6.1
|
|
pkgrel=1
|
|
pkgdesc='A Quick and simple addon for format usb sticks using the device notifier for Chakra GNU/Linux'
|
|
url='http://www.chakraos.org'
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
depends=('qt' 'kdelibs')
|
|
makedepends=('automoc4' 'git' 'cmake')
|
|
categories=('utils')
|
|
source=($pkgname-$pkgver::"git://git.chakraos.org/quick-usb-formatter.git")
|
|
md5sums=('SKIP')
|
|
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
rm -rf build
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|