Add spectrum2 and biboumi and deps

This commit is contained in:
moparisthebest
2016-11-06 00:52:55 -04:00
parent c1a9c881e0
commit 48040645c9
18 changed files with 634 additions and 0 deletions

18
src/libcommuni/.SRCINFO Normal file
View File

@@ -0,0 +1,18 @@
# Generated by mksrcinfo v8
# Mon Jan 4 18:51:58 UTC 2016
pkgbase = libcommuni
pkgdesc = A cross-platform IRC framework written with Qt.
pkgver = 3.4.0
pkgrel = 1
url = https://communi.github.io/
arch = x86_64
arch = i686
license = custom
depends = qt5-declarative
provides = libcommuni
conflicts = libcommuni
source = libcommuni-v3.4.0.tar.gz::https://github.com/communi/libcommuni/archive/v3.4.0.tar.gz
md5sums = 987fa2143324ab3f1843483053bf711f
pkgname = libcommuni

44
src/libcommuni/PKGBUILD Normal file
View File

@@ -0,0 +1,44 @@
# Maintainer: Stephen Brennan <smb196@case.edu>
pkgname=libcommuni
pkgver=3.4.0
pkgrel=1
epoch=
pkgdesc="A cross-platform IRC framework written with Qt."
arch=('x86_64' 'i686')
url="https://communi.github.io/"
license=('custom')
groups=()
depends=('qt5-declarative')
makedepends=()
checkdepends=()
optdepends=()
provides=($pkgname)
conflicts=($pkgname)
replaces=()
backup=()
options=()
install=
changelog=
source=("libcommuni-v$pkgver.tar.gz::https://github.com/communi/$pkgname/archive/v$pkgver.tar.gz")
noextract=()
md5sums=(987fa2143324ab3f1843483053bf711f)
validpgpkeys=()
build() {
cd "$pkgname-$pkgver"
qmake
make
}
check() {
cd "$pkgname-$pkgver"
make -k check
}
package() {
cd "$pkgname-$pkgver"
make INSTALL_ROOT="$pkgdir" install
mkdir -p "$pkgdir/usr/share/licenses/${pkgname}/"
install -m644 LICENSE \
"$pkgdir/usr/share/licenses/${pkgname}/"
}