29 lines
695 B
Bash
29 lines
695 B
Bash
# Maintainer: Your Name <your.email@example.com>
|
|
|
|
pkgname=mirrorman
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc="A GUI tool for managing Arch Linux mirrors and repositories (Parch Repository Manager)"
|
|
arch=('any')
|
|
url="https://git.parchlinux.com/applications/mirrorman"
|
|
license=('GPL-3')
|
|
depends=('python' 'python-gobject' 'libadwaita' 'polkit' )
|
|
makedepends=('meson' 'ninja')
|
|
source=("git+https://git.parchlinux.com/applications/mirrorman.git")
|
|
sha256sums=('SKIP')
|
|
|
|
prepare() {
|
|
cd "$srcdir/mirrorman"
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/mirrorman"
|
|
meson setup --prefix=/usr --buildtype=plain build
|
|
meson compile -C build
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/mirrorman"
|
|
meson install -C build --destdir "$pkgdir"
|
|
}
|