32 lines
974 B
Bash
32 lines
974 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=qtct
|
|
_pkgname=qt5ct
|
|
pkgver=1.1
|
|
_debver=1.1
|
|
_debrel=1
|
|
pkgrel=1
|
|
pkgdesc='Qt Configuration Utility'
|
|
arch=('i686' 'x86_64')
|
|
url='https://qt5ct.sourceforge.io/'
|
|
license=('Simplified-BSD')
|
|
depends=('qt-svg')
|
|
makedepends=('qt-tools')
|
|
source=("https://downloads.sourceforge.net/project/${_pkgname}/${_pkgname}-${pkgver}.tar.bz2"
|
|
"https://deb.debian.org/debian/pool/main/q/qt5ct/qt5ct_${_debver}-${_debrel}.debian.tar.xz")
|
|
sha512sums=('0df00c0680aefb0eada1ddb70886fd63641c403ab42843f8d209413a56895dce0a88eb88a98d09d23a30df3b15ca1d595237592958769a1be86719f2a16cbdf7'
|
|
'562b3a7c1ca9c2f394f9a2f389c82944be5a70f868ed8e035402749c0ef9634ea36ec897b57ab1e0d6c21c910d6ef1a87d09a64788d63f640a8621c18183a14b')
|
|
|
|
build() {
|
|
cd $_pkgname-$pkgver
|
|
qmake-qt5 $_pkgname.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $_pkgname-$pkgver
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
|
|
install -Dm644 COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
|
|
}
|