tiny-irc-client-git

PKGBUILD for an irc client written in Rust
git clone git://git.wrycode.com/wrycode/AUR/tiny-irc-client-git.git
Log | Files | Refs

commit 457a77d934b668da4f6cc3f19b18fd1c2eb45218
Author: Nick Econopouly <wry@mm.st>
Date:   Tue, 10 Apr 2018 22:58:24 -0400

Initial commit.

Diffstat:
A.SRCINFO | 15+++++++++++++++
APKGBUILD | 25+++++++++++++++++++++++++
2 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/.SRCINFO b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = tiny-irc-client-git + pkgdesc = A console IRC client + pkgver = 0.4.0 + pkgrel = 1 + url = https://github.com/osa1/tiny + arch = x86_64 + license = MIT + makedepends = git + makedepends = rust-nightly + depends = openssl + depends = dbus + provides = tiny + +pkgname = tiny-irc-client-git + diff --git a/PKGBUILD b/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Nick Econopouly <wry at mm dot st> +pkgname=tiny-irc-client-git +pkgver="0.4.0" +pkgrel=1 +pkgdesc="A console IRC client" +arch=('x86_64') +provides=('tiny') +url="https://github.com/osa1/tiny" +license=('MIT') +depends=('openssl' 'dbus') +makedepends=('git' 'rust-nightly') + +build() { + return 0 +} + +package() { + git clone "$url.git" + cd tiny + cargo +nightly build --release + install -Dm755 target/release/tiny "$pkgdir/usr/bin/tiny" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/tiny/LICENSE" + +}+ \ No newline at end of file