mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
972 B
Bash
29 lines
972 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: george <george[at]chakra-project.org>
|
|
|
|
pkgname=spun-live
|
|
pkgver=0.2.1
|
|
pkgrel=2
|
|
pkgdesc='A simple pacman update notifier, using notify-send. Live ISO version.'
|
|
arch=('any')
|
|
url='http://github.com/george2/spun/'
|
|
screenshot='http://i.imgur.com/8eIE0.png'
|
|
license=('none')
|
|
conflicts=('spun')
|
|
depends=('libnotify' 'bash')
|
|
optdepends=('kde-baseapps: for the kdialog configuration gui')
|
|
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=('b0b3811e3648a80d9056c38233d67be4'
|
|
'f7b4c548922ddfabc8d4f7987b313934'
|
|
'9e493da7765c00475391fd976338c5d6')
|
|
|
|
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"
|
|
}
|