-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKGBUILD
More file actions
21 lines (18 loc) · 771 Bytes
/
PKGBUILD
File metadata and controls
21 lines (18 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: RustMail <hello@rustmail.app>
pkgname=rustmail-bin
pkgver=0.2.2
pkgrel=1
pkgdesc="Self-hosted SMTP mail catcher with web UI, REST API, and CI assertions"
arch=('x86_64' 'aarch64')
url="https://github.com/rustmailapp/rustmail"
license=('MIT' 'Apache-2.0')
provides=('rustmail')
conflicts=('rustmail')
depends=('glibc')
source_x86_64=("${url}/releases/download/v${pkgver}/rustmail-x86_64-unknown-linux-gnu.tar.gz")
source_aarch64=("${url}/releases/download/v${pkgver}/rustmail-aarch64-unknown-linux-gnu.tar.gz")
sha256sums_x86_64=('3bdcdd51f798a8720ea66da4a0086953a8d2cb9abd0e1ea978083586d395fa47')
sha256sums_aarch64=('66e2cd0c6f65b927b320c1f33aa506779266c494c21ffe507c0963ac2b3083a2')
package() {
install -Dm755 rustmail "${pkgdir}/usr/bin/rustmail"
}