blob: e44fefabd3f2ae27ca6ad92ad7d0be80ef3e5cd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Alex Butler <alexheretic@gmail.com>
pkgname=apart-gtk
pkgver=0.23
pkgrel=1
pkgdesc="Linux GUI for cloning & restoring disk partitions to & from compressed image files."
arch=('any')
url="https://github.com/alexheretic/apart-gtk"
license=('GPL3')
depends=('python'
'python-gobject'
'python-yaml'
'python-pyzmq'
'python-humanize'
'gtk3'
'partclone'
'zeromq')
optdepends=('polkit: to run as non-root user'
'pigz: adds compression option'
'zstd: adds compression option'
'lz4: adds compression option')
makedepends=('rustup'
'git')
source=("https://github.com/alexheretic/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('551e419ec7d39df81cb32955016d4986464a77876b77cfb0c47ce9f8d2ea61fd')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|