summaryrefslogtreecommitdiff
path: root/aur/streamlib/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'aur/streamlib/PKGBUILD')
-rw-r--r--aur/streamlib/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/aur/streamlib/PKGBUILD b/aur/streamlib/PKGBUILD
new file mode 100644
index 0000000..5a08c64
--- /dev/null
+++ b/aur/streamlib/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: Yuval Adam <aur at yuv dot al> PGP-Key: 55E36E28535222E2A2062848B75B5FC2FA1AFE15
+
+pkgname=streamlib
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="Play your favorite live streams from command line"
+arch=('any')
+url="https://github.com/streamlib/streamlib"
+license=(GPL)
+makedepends=('cargo')
+source=("https://github.com/streamlib/streamlib/archive/v${pkgver}.tar.gz")
+sha1sums=('1373356032f9f1f7c4454daab7a815747e1dbe78')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ cargo build --release
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ install -Dm755 "target/release/streamlib" "$pkgdir/usr/bin/streamlib"
+}
+
+# vim:set ts=2 sw=2 et: