summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD16
2 files changed, 28 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..7b8da0ca778f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = plsplay
+ pkgdesc = A command line audio player.
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://github.com/El-Wumbus/plsplay
+ arch = x86_64
+ license = GPL2
+ provides = plsplay
+ source = https://github.com/El-Wumbus/plsplay/releases/download/v0.1.0-alpha/plsplay_v0.1.0-alpha_x86_64-linux.tar.xz
+ sha256sums = 95192691a65c3bfc8e5197f8e049dda5dc03ee1e5174b053ffe2031e880021f0
+
+pkgname = plsplay
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..95c2754f7f9e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+pkgname="plsplay"
+pkgver="0.1.0"
+pkgrel=1
+pkgdesc="A command line audio player."
+arch=("x86_64")
+url="https://github.com/El-Wumbus/plsplay"
+license=("GPL2")
+provides=("plsplay")
+source=("https://github.com/El-Wumbus/plsplay/releases/download/v${pkgver}-alpha/plsplay_v${pkgver}-alpha_x86_64-linux.tar.xz")
+sha256sums=("95192691a65c3bfc8e5197f8e049dda5dc03ee1e5174b053ffe2031e880021f0")
+
+package()
+{
+ cd target/release
+ install -Dm755 ./plsplay "$pkgdir/usr/bin/plsplay"
+} \ No newline at end of file