first commit
This commit is contained in:
24
.SRCINFO
Normal file
24
.SRCINFO
Normal file
@@ -0,0 +1,24 @@
|
||||
# Generated by mksrcinfo v8
|
||||
# Mon Sep 12 20:18:33 UTC 2016
|
||||
pkgbase = orion
|
||||
pkgdesc = QML/C++-written desktop client for Twitch.tv
|
||||
pkgver = 1.3.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/alamminsalo/orion/
|
||||
arch = x86_64
|
||||
arch = x86
|
||||
license = GPL
|
||||
makedepends = qmake
|
||||
makedepends = libcommuni
|
||||
makedepends = mpv
|
||||
makedepends = qt5-webengine
|
||||
makedepends = qt5-svg
|
||||
provides = orion
|
||||
conflicts = orion
|
||||
source = https://github.com/alamminsalo/orion/archive/v1.3.0.tar.gz
|
||||
source = Orion.desktop
|
||||
sha256sums = b7da580dc0c0c28978b5bf2a84a839a517503c98005616e1690c177867d0c148
|
||||
sha256sums = a0bb773176dd7ec448ecd5702da9c32b35da27ea3070b23496fe51abb15d8d44
|
||||
|
||||
pkgname = orion
|
||||
|
10
Orion.desktop
Normal file
10
Orion.desktop
Normal file
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Orion
|
||||
Icon=/usr/share/icons/orion.svg
|
||||
Exec=/usr/bin/orion
|
||||
Comment=Seek and watch streams on Twitch
|
||||
Categories=Games;
|
||||
Terminal=false
|
||||
StartupWMClass=orion
|
38
PKGBUILD
Normal file
38
PKGBUILD
Normal file
@@ -0,0 +1,38 @@
|
||||
# Maintainer: David McInnis <davidm@eagles.ewu.edu>
|
||||
# Contributor: HabarNam <habarnam@gmail.com>
|
||||
|
||||
pkgname=orion
|
||||
pkgver=1.3.0
|
||||
pkgrel=1
|
||||
pkgdesc="QML/C++-written desktop client for Twitch.tv"
|
||||
arch=('x86_64' 'x86')
|
||||
url="https://github.com/alamminsalo/orion/"
|
||||
license=('GPL')
|
||||
groups=()
|
||||
depends=()
|
||||
makedepends=('qmake' 'libcommuni' 'mpv' 'qt5-webengine' 'qt5-svg')
|
||||
provides=("${pkgname}")
|
||||
conflicts=("${pkgname%-git}")
|
||||
source=("https://github.com/alamminsalo/orion/archive/v${pkgver}.tar.gz"
|
||||
"Orion.desktop"
|
||||
)
|
||||
|
||||
sha256sums=('b7da580dc0c0c28978b5bf2a84a839a517503c98005616e1690c177867d0c148'
|
||||
'a0bb773176dd7ec448ecd5702da9c32b35da27ea3070b23496fe51abb15d8d44')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/${pkgname}-${pkgver}"
|
||||
qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir/usr/share/icons"
|
||||
mkdir -p "$pkgdir/usr/share/applications"
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
|
||||
cd "$srcdir/${pkgname}-${pkgver}"
|
||||
cp "orion.svg" "$pkgdir/usr/share/icons/"
|
||||
cp "../Orion.desktop" "$pkgdir/usr/share/applications/"
|
||||
cp "orion" "$pkgdir/usr/bin/"
|
||||
}
|
Reference in New Issue
Block a user