Last active
March 15, 2020 12:04
-
-
Save crabvk/b84ad587c524fbeba6cbb19aac15b80b to your computer and use it in GitHub Desktop.
Arch Linux AUR sendxmpp-rs 1.0.1 PKGBUILD patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- PKGBUILD.orig 2020-03-15 17:02:27.959857250 +0500 | |
+++ PKGBUILD 2020-03-15 17:02:21.456492264 +0500 | |
@@ -1,37 +1,27 @@ | |
# Maintainer: moparisthebest <admin dot archlinux AT moparisthebest dot com> | |
-_pkgname=sendxmpp | |
+_commit=37b5efd4b62c416e6f47f44ab57a42b61ee3dbcb | |
pkgname=sendxmpp-rs | |
-pkgver=1.0.0 | |
+pkgver=1.0.1 | |
pkgrel=1 | |
-pkgdesc="sendxmpp is the XMPP equivalent of sendmail. It is an alternative to the old sendxmpp written in Perl." | |
-url="https://code.moparisthebest.com/moparisthebest/sendxmpp-rs" | |
+pkgdesc='XMPP equivalent of sendmail' | |
+url='https://github.com/moparisthebest/sendxmpp-rs' | |
makedepends=('cargo') | |
-provides=('sendxmpp' 'sendxmpp-py') | |
-conflicts=('sendxmpp' 'sendxmpp-py') | |
+conflicts=('sendxmpp' 'sendxmpp-git' 'sendxmpp-py' 'sendxmpp-rs-git') | |
arch=('i686' 'x86_64' 'armv7h' 'armv6h') | |
-license=('GPL') | |
+license=('GPL3') | |
backup=('etc/sendxmpp/sendxmpp.toml') | |
-source=("$_pkgname-$pkgver.tar.gz::https://crates.io/api/v1/crates/$_pkgname/$pkgver/download" | |
- "$_pkgname-$pkgver.tar.gz.asc::https://code.moparisthebest.com/attachments/f627adef-0e6b-48af-b57a-01d353b15e58" | |
- ) | |
-validpgpkeys=('81F1C22DD41109D4A9C0A7B5B070F8D97D1A0BBA') # moparisthebest <admin AT moparisthebest.com> | |
-sha256sums=('08cdf3bd4279022c7606f8da6633bea50f968f2761a63268524dbabe9a566e16' | |
- 'a0488ab400730e1e21eddd328de90a3eefb4044eeb2c6773ae2c6607303881f7' | |
- ) | |
- | |
-prepare() { | |
- cd "$_pkgname-$pkgver" | |
- cargo fetch | |
-} | |
+source=("https://github.com/moparisthebest/sendxmpp-rs/archive/${_commit}.tar.gz") | |
+sha256sums=('06c43e517f9ac0881104284f8437064440557544c08338506a3c68494b55f30a') | |
build() { | |
- cd "$_pkgname-$pkgver" | |
+ cd sendxmpp-rs-${_commit} | |
cargo build --release | |
} | |
package() { | |
- cd "$_pkgname-$pkgver" | |
+ cd sendxmpp-rs-${_commit} | |
+ | |
install -Dm755 target/release/sendxmpp "$pkgdir/usr/bin/sendxmpp" | |
install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md" | |
install -Dm644 sendxmpp.toml "${pkgdir}/etc/sendxmpp/sendxmpp.toml" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment