blob: 03ba7b320bb483e97a328294e143af7cce1b4a94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: David Wu <xdavidwuph@gmail.com>
pkgname=kali-undercover
pkgver=2020.1.1
pkgrel=1
pkgdesc='Kali Undercover Mode'
arch=('any')
url='https://gitlab.com/kalilinux/packages/kali-undercover/'
license=('GPL3')
depends=('python-gobject' 'xfce4-session' 'xfce4-panel' 'xfdesktop' 'xfwm4' 'ttf-liberation')
optdepends=('xfce4-whiskermenu-plugin: for menu on undercover mode'
'xfce4-notifyd: for settings restored notification'
'libnotify: for settings restored notification'
'psmisc: for clearing existing notificaion')
source=(https://gitlab.com/kalilinux/packages/${pkgname}/-/archive/kali/${pkgver}/${pkgname}-kali-${pkgver}.tar.gz)
sha256sums=('33d87c2780750397958501a46794a4f103893983fd6ba69e1e380ceb7ddab874')
package() {
cd ${pkgname}-kali-${pkgver}
install -d "${pkgdir}/usr"
cp -dr bin "${pkgdir}/usr/bin"
cp -dr share "${pkgdir}/usr/share"
}
|