mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-29 10:42:16 +08:00
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: george <george[at]chakra-project.org>
|
|
|
|
pkgname=spun-live
|
|
pkgver=0.3
|
|
pkgrel=1
|
|
pkgdesc='A simple pacman update notifier, using notify-send. Live ISO version, with pacman help.'
|
|
arch=('any')
|
|
url='http://github.com/george2/spun/'
|
|
screenshot='http://github.com/george2/spun/raw/master/spun-live.png'
|
|
license=('none')
|
|
conflicts=('spun')
|
|
depends=('libnotify' 'bash')
|
|
optdepends=('kde-baseapps: for the kdialog configuration gui')
|
|
install=spun.install
|
|
source=('https://raw.github.com/george2/spun/master/spun-live'
|
|
'https://raw.github.com/george2/spun/master/spun.conf'
|
|
'https://raw.github.com/george2/spun/master/spun.desktop')
|
|
md5sums=('1078edf52996e72772e453efcc83b903'
|
|
'1a1ac3a55999a35798e01945f3827b1e'
|
|
'ac9e112d6280bb384fb76cd4ed85dd5d')
|
|
|
|
package() {
|
|
install -Dm755 spun-live "${pkgdir}/usr/bin/spun"
|
|
install -Dm644 spun.conf "${pkgdir}/etc/spun.conf"
|
|
install -Dm755 spun.desktop "${pkgdir}/usr/share/autostart/spun.desktop"
|
|
}
|