Unverified Commit 91876479 authored by Jack Chen's avatar Jack Chen
Browse files

init commit

parents
Loading
Loading
Loading
Loading

.SRCINFO

0 → 100644
+14 −0
Original line number Diff line number Diff line
pkgbase = linuxqq
	pkgdesc = QQ for Linux
	pkgver = 2.0.0
	pkgrel = 1
	url = https://im.qq.com/linuxqq/download.html/
	arch = x86_64
	arch = aarch64
	arch = mips64el
	license = custom
	source = https://qd.myapp.com/myapp/qqteam/linuxQQ/linuxqq_2.0.0-b1-1024_x86_64.rpm
	md5sums = b72ca96b56cbb821182610263fa61145

pkgname = linuxqq

.gitignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
*
.*

PKGBUILD

0 → 100644
+25 −0
Original line number Diff line number Diff line
# Maintainer: Jack Chen <redchenjs@live.com>

pkgname=linuxqq
pkgver=2.0.0
pkgrel=1
pkgdesc='QQ for Linux'
arch=('x86_64' 'aarch64' 'mips64el')
url='https://im.qq.com/linuxqq/download.html/'
license=('custom')
source=(
    'https://qd.myapp.com/myapp/qqteam/linuxQQ/linuxqq_'${pkgver}'-b1-1024_'${arch}'.rpm'
)
md5sums=(
    'b72ca96b56cbb821182610263fa61145'
)
[ "$CARCH" = "aarch64" ] && md5sums=(
    'f37c3d05edc3764cf7837354971f5656'
)
[ "$CARCH" = "mips64el" ] && md5sums=(
    '07a8da26d708c3fe9bb1d7c9e1d9ae4e'
)

package() {
    mv ${srcdir}/usr/ ${pkgdir}/
}