blob: 976ce6342fc7f7c599a789cfde295a0c7f527f72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: Theo J.A. de Vries <t.j.a.devries(at)gmail(dot)com>
# for customization
_pkgname=touchpad-toggle
_ext=
_basedir=/usr/bin
# note: depends=() needs separate customization
pkgname=${_pkgname}${_ext}
pkgver=1
pkgrel=1
pkgdesc="Script to toggle the touchpad; see https://wiki.archlinux.org/index.php/Touchpad_Synaptics#Software_toggle. Use desktop environment to set keyboard shortcut."
arch=("any")
#url="https://bitbucket.org/"
license=("Apache")
groups=()
depends=("bash" "xf86-input-synaptics")
#makedepends=("git")
optdepends=()
provides=("touchpad-toggle")
conflicts=("touchpad-toggle")
#backup=()
#options=()
#install=
source=(
"touchpad-toggle.sh"
)
noextract=()
#md5sums=() #generate with 'makepkg -g >> PKGBUILD'
build() {
msg "Nothing to build really.."
}
package() {
# cd "$srcdir/$_gitname-build"
msg "Installing script file"
install -m755 -d ${pkgdir}${_basedir}
install -m655 touchpad-toggle.sh ${pkgdir}${_basedir}/touchpad-toggle.sh
}
md5sums=('b691e7dbf1c850900120624dbe40e019')
|