summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsL1pKn072017-12-16 20:30:16 +0100
committersL1pKn072017-12-16 20:30:16 +0100
commit3ff28c68f28b7fe39d7ac7a8bf33c001fdd3e584 (patch)
tree94e2bbc71f997238da735bc504b70c944300194e
parent7fc87e8ad9e8932298354f7a57feef4868028fd4 (diff)
downloadaur-3ff28c68f28b7fe39d7ac7a8bf33c001fdd3e584.tar.gz
Fix url
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD12
2 files changed, 11 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 94cafedd857e..f0f1c7ea4266 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,15 @@
+# Generated by mksrcinfo v8
+# Sat Dec 16 19:30:08 UTC 2017
pkgbase = rsound
pkgdesc = Simple solution for streaming PCM data from client to server in real time.
pkgver = 1.1
- pkgrel = 2
+ pkgrel = 3
url = http://github.com/Themaister/RSound
arch = i686
arch = x86_64
license = GPL
- source = http://cloud.github.com/downloads/Themaister/RSound/rsound-1.1.tar.gz
- md5sums = dede531464e071b967714691e68b4896
+ source = https://github.com/Themaister/RSound/archive/v1.1.tar.gz
+ sha256sums = dd4e32467360c5b49603da9f48bb4e69e4da4f60863a576a9df797091820faf3
pkgname = rsound
diff --git a/PKGBUILD b/PKGBUILD
index a88256b72df7..4ebc5b4b9bec 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,22 +3,22 @@
pkgname=rsound
pkgver=1.1
-pkgrel=2
-pkgdesc="Simple solution for streaming PCM data from client to server in real time."
+pkgrel=3
+pkgdesc='Simple solution for streaming PCM data from client to server in real time.'
url='http://github.com/Themaister/RSound'
arch=('i686' 'x86_64')
license=('GPL')
-source=("http://cloud.github.com/downloads/Themaister/RSound/${pkgname}-${pkgver}.tar.gz")
-md5sums=('dede531464e071b967714691e68b4896')
+source=("https://github.com/Themaister/RSound/archive/v${pkgver}.tar.gz")
+sha256sums=('dd4e32467360c5b49603da9f48bb4e69e4da4f60863a576a9df797091820faf3')
build() {
- cd "${pkgname}-${pkgver}"
+ cd "RSound-${pkgver}"
./configure --prefix=/usr
make
}
package() {
- cd "${pkgname}-${pkgver}"
+ cd "RSound-${pkgver}"
mkdir -p "${pkgdir}/usr/share/man/man1"
make DESTDIR="${pkgdir}" install
}