summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 99fa18bceee1a3bd27485af859ae84a097540503 (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
44
45
# Maintainer: Filippo Squillace <feel dot sqoox at gmail dot com>
# More details on how to change this file:
# https://wiki.archlinux.org/index.php/PKGBUILD
# https://wiki.archlinux.org/index.php/Creating_packages
# https://wiki.archlinux.org/index.php/Arch_User_Repository#Submitting_packages

pkgname=sudo-fake
pkgver=0.1.0
pkgrel=1
pkgdesc="Simple script that bypasses sudo and execute the actual command. Useful for fakeroot environments."
arch=('any')
url=""
license=('GPL')
groups=()
depends=()
makedepends=()
provides=('sudo')
conflicts=('sudo')
backup=()
options=()
#install=
source=()
md5sums=()
noextract=()

package() {
    install -d -m 755 "${pkgdir}/usr/bin/"
    cat <<EOF > "${pkgdir}/usr/bin/sudo"
#!/bin/bash
for opt in "\$@"
do
    case "\$1" in
        --) shift ; break ;;
        -*) shift ;;
        *) break ;;
    esac
done

[[ -z "\${@}" ]] || "\${@}"
EOF

    chmod 755 "${pkgdir}/usr/bin/sudo"
}

# vim:set ts=2 sw=2 et: