mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
33 lines
701 B
Bash
33 lines
701 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=qoauth
|
|
pkgver=1.0.1
|
|
pkgrel=3
|
|
pkgdesc="Support with OAuth-powered network services"
|
|
url="http://github.com/ayoy/qoauth"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
depends=('qca')
|
|
makedepends=('cmake' 'automoc4')
|
|
source=("http://files.ayoy.net/qoauth/release/current/src/${pkgname}-${pkgver}-src.tar.bz2")
|
|
md5sums=('bcb6d01e6c9a6fb22099c9e0f5889578')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}-src
|
|
# Move libraries from /usr/lib64 to /usr/lib
|
|
sed -i 's|lib64|lib|' src/src.pro
|
|
|
|
qmake
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}-src
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
|
|
|
|
}
|