blob: 25fc81f771a681974f930c1c92722f284e75ae41 (
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
|
# Maintainer: Andy Alt <arch_stanton5995 at proton.me>
# Contributor: Oliver Jaksch <arch-aur at com-in dot de>
pkgname=rmw
pkgver=0.9.0
pkgrel=2
pkgdesc="trash/recycle bin utility for the command line"
arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'ppc64le')
url="https://theimpossibleastronaut.com/rmw-website/"
license=('GPL3')
depends=('ncurses')
makedepends=('meson' 'ninja')
optdepends=('gettext' 'canfigger')
source=("https://github.com/theimpossibleastronaut/rmw/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
sha256sums=('cc9d20733c9f9945054041ee6aeac7f4a4b7a675f297ffe388e4863fb84ed4a1')
build() {
arch-meson $pkgname-$pkgver build -Db_sanitize=none
meson compile -v -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
|