mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
# Maintainer: Jeff Huang <s8321414@gmail.com>
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributions from AUR: https://aur.archlinux.org/packages/dianara/
|
|
|
|
pkgname=dianara
|
|
pkgver=1.2.5
|
|
pkgrel=1
|
|
pkgdesc="A Qt pump.io client"
|
|
arch=('x86_64')
|
|
url="http://dianara.nongnu.org/"
|
|
license=('GPL')
|
|
depends=('qjson' 'qoauth' 'qca-ossl')
|
|
install="$pkgname.install"
|
|
screenshot=('http://dianara.nongnu.org/images/dianara-v0.9-release-main.png')
|
|
source=("http://download-mirror.savannah.gnu.org/releases/$pkgname/$pkgname-v$pkgver.tar.gz")
|
|
md5sums=('70e9c8138d482108b24183d3c52b6958')
|
|
|
|
build() {
|
|
cd $pkgname-v$pkgver
|
|
[ -d bld ] || mkdir bld && cd bld
|
|
qmake ..
|
|
make
|
|
}
|
|
|
|
|
|
package() {
|
|
cd $pkgname-v$pkgver
|
|
|
|
# bin
|
|
install -Dm755 bld/$pkgname \
|
|
"$pkgdir/usr/bin/$pkgname"
|
|
|
|
# desktop file
|
|
install -Dm644 $pkgname.desktop \
|
|
"$pkgdir/usr/share/applications/$pkgname.desktop"
|
|
|
|
# icons
|
|
install -Dm644 icon/32x32/$pkgname.png \
|
|
"$pkgdir/usr/share/icons/hicolor/32x32/apps/$pkgname.png"
|
|
install -Dm644 icon/64x64/$pkgname.png \
|
|
"$pkgdir/usr/share/icons/hicolor/64x64/apps/$pkgname.png"
|
|
|
|
# translations
|
|
install -d "$pkgdir/usr/share/locale"
|
|
install -Dm644 translations/*.qm \
|
|
"$pkgdir/usr/share/locale"
|
|
|
|
# man
|
|
install -Dm644 manual/$pkgname.1 \
|
|
"$pkgdir/usr/share/man/man1/$pkgname.1"
|
|
}
|